Files
kotlin-fork/compiler/testData/diagnostics/tests/override/OverrideWithErrors.kt
T
Nikolay Krasko 75c887048e Drop AbstractLazyResolveRecursiveComparingTest test
Test data from compiler/testData/lazyResolve/ was moved to diagnostics tests
2014-12-03 14:08:23 +03:00

9 lines
155 B
Kotlin
Vendored

package test
open class A {
open fun foo(a: <!UNRESOLVED_REFERENCE!>E<!>) {}
}
class B : A() {
override fun foo(a: <!UNRESOLVED_REFERENCE!>E<!>) {}
}