mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
153 B
Swift
11 lines
153 B
Swift
public enum ResilientType {
|
|
case a(Int64)
|
|
case b(Int64)
|
|
}
|
|
|
|
@frozen
|
|
public enum SomeEnum {
|
|
case first(ResilientType)
|
|
case second(ResilientType)
|
|
}
|