mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
8 lines
160 B
Swift
8 lines
160 B
Swift
// This is used by the matching_patterns test to test qualified reference to
|
|
// enum elements.
|
|
|
|
public enum ImportedEnum {
|
|
case Simple
|
|
case Compound(Int)
|
|
}
|