blob: 70e7977ab9c5ebba5baffdeb202b32c319070863 [file] [log] [blame]
// RUN: not %target-swift-frontend -typecheck %s
// Just make sure we don't crash.
enum Crash: String {
case foo
case bar(String)
static let shared = Crash()
}
extension Crash {
init() { self = .foo }
}