mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
enum Foo {
|
|
case first(associated: Int)
|
|
case <base>second</base>
|
|
}
|
|
|
|
func test() {
|
|
let _ = Foo.first(associated: 1)
|
|
let _ = Foo.first
|
|
let _ = Foo.<base>second</base>
|
|
}
|
|
|
|
|