Avatar
@swift-5.6.3 enum MyOptional<Wrapped> { case some(Wrapped) case none } func foo() -> MyOptional<some Equatable> { return .some(100) }