796f8e6bce
This reverts commit 84334b08
12 lines
163 B
Kotlin
Vendored
12 lines
163 B
Kotlin
Vendored
class A<E> {
|
|
fun foo(): E = TODO()
|
|
}
|
|
|
|
class B(var a: A<*>?) {
|
|
fun bar() {
|
|
if (a != null) {
|
|
a<!UNSAFE_CALL!>.<!>foo()
|
|
}
|
|
}
|
|
}
|