12 lines
134 B
Kotlin
Vendored
12 lines
134 B
Kotlin
Vendored
package some
|
|
|
|
import other.Unresolved as A
|
|
|
|
class Derived : A {
|
|
val x: A? = null
|
|
|
|
fun takeA(a: A) {}
|
|
}
|
|
|
|
// COMPILATION_ERRORS
|