Files
swift-mirror/test/IRGen/Inputs/objc_enum_multi_file_helper.swift
Jordan Rose d5e0ac7ce9 [test] Test both "start-from-zero" and "start-from-constant" enums.
...as suggested by Joe on r25284.

Swift SVN r25488
2015-02-23 22:52:40 +00:00

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
}