mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
111 B
Swift
8 lines
111 B
Swift
@_frozen public enum FrozenEnum {
|
|
case a, b, c
|
|
}
|
|
|
|
/*non-frozen*/public enum NonFrozenEnum {
|
|
case a, b, c
|
|
}
|