blob: 72b3c6d092350461a8d3c803d1c4505af7e08231 [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
struct Foo: OptionSet {
let rawValue: Int
static let none = Foo(rawValue: 1 << 0)
}
extension Foo: ExpressibleByIntegerLiteral { }