blob: b6b237e9aed2d1870f536935d991a1ac4a4c2313 [file] [log] [blame]
// 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
}
}