10 lines
172 B
Kotlin
Vendored
10 lines
172 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
package test
|
|
|
|
open class A {
|
|
open fun foo(a: <!UNRESOLVED_REFERENCE!>E<!>) {}
|
|
}
|
|
|
|
class B : A() {
|
|
override fun foo(a: <!UNRESOLVED_REFERENCE!>E<!>) {}
|
|
} |