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

16 lines
260 B
Swift

// RUN: not %target-typecheck-verify-swift
class Q {
var z: Q.z
init () {
// FIXME: Per rdar://problem/35469647, this should be well-formed, but
// it's no longer crashing the compiler.
z = Q.z.M
}
enum z: Int {
case M = 1
}
}