mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
17 lines
157 B
Swift
17 lines
157 B
Swift
enum Foo : Int {
|
|
case a = 0
|
|
}
|
|
|
|
enum Bar : UInt {
|
|
case a = 0
|
|
case b = 22
|
|
}
|
|
|
|
enum Baz : UInt {
|
|
case a = 0
|
|
}
|
|
|
|
enum Garply : String {
|
|
case a = "A"
|
|
}
|