blob: d9c32eeb9bd222c28c39157b2227a0972f0f97de [file] [log] [blame]
// RUN: %target-swift-frontend -typecheck %s -verify
enum FooString: String { // expected-error {{'FooString' declares raw type 'String', but does not conform to RawRepresentable and conformance could not be synthesized}}
case bar1 = #file // expected-error {{use of '#file' literal as raw value for enum case is not supported}}
case bar2 = #function // expected-error {{use of '#function' literal as raw value for enum case is not supported}}
case bar3 = #filePath // expected-error {{use of '#filePath' literal as raw value for enum case is not supported}}
case bar4 = #line // expected-error {{cannot convert value of type 'Int' to raw type 'String'}}
case bar5 = #column // expected-error {{cannot convert value of type 'Int' to raw type 'String'}}
case bar6 = #dsohandle // expected-error {{cannot convert value of type 'UnsafeRawPointer' to raw type 'String'}}
}
enum FooInt: Int { // expected-error {{'FooInt' declares raw type 'Int', but does not conform to RawRepresentable and conformance could not be synthesized}}
case bar1 = #file // expected-error {{cannot convert value of type 'String' to raw type 'Int'}}
case bar2 = #function // expected-error {{cannot convert value of type 'String' to raw type 'Int'}}
case bar3 = #filePath // expected-error {{cannot convert value of type 'String' to raw type 'Int'}}
case bar4 = #line // expected-error {{use of '#line' literal as raw value for enum case is not supported}}
case bar5 = #column // expected-error {{use of '#column' literal as raw value for enum case is not supported}}
case bar6 = #dsohandle // expected-error {{cannot convert value of type 'UnsafeRawPointer' to raw type 'Int'}}
}