mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
10 lines
153 B
Swift
10 lines
153 B
Swift
// Used from test/IRGen/objc_enum_multi_file.swift
|
|
|
|
@objc public enum Foo: Int32 {
|
|
case A, B, C
|
|
}
|
|
|
|
@objc public enum Bar: Int32 {
|
|
case A = 5, B, C
|
|
}
|