mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
8 lines
108 B
Swift
8 lines
108 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
enum Foo {
|
|
case BigA {
|
|
}
|
|
case littleA(BigA)
|
|
}
|