enum E { case s(Value) case n } public struct S { var e: E var b: Bool = false public init() { self.e = .n } }