Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0209-rdar45590743.swift
2019-10-11 20:54:52 -07:00

11 lines
175 B
Swift

// RUN: not %target-swift-frontend -typecheck %s
// rdar://problem/45590743 used to crash
class Base {
var x = 0
}
class Derived : Base {
override var x = Derived().x
}