JetDiagnosticsTest migrated to TestGenerator
- test data files renamed from *.jet to *.kt
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
fun box(c : C) {
|
||||
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