JetPsiCheckerTest and its testdata moved back to plugin tests
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
fun box() {
|
||||
val a : C = C()
|
||||
a.foo()
|
||||
}
|
||||
|
||||
open class A() {
|
||||
open fun foo() {}
|
||||
}
|
||||
|
||||
open class B() : A() {
|
||||
override fun foo() {}
|
||||
}
|
||||
|
||||
open class C() : B() {
|
||||
override fun foo() {}
|
||||
}
|
||||
Reference in New Issue
Block a user