Files
swift-mirror/validation-test/compiler_crashers_2_fixed/sr7002.swift

9 lines
186 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
struct Foo: OptionSet {
let rawValue: Int
static let none = Foo(rawValue: 1 << 0)
}
extension Foo: ExpressibleByIntegerLiteral { }