8 lines
115 B
Kotlin
8 lines
115 B
Kotlin
// "Create class 'Foo'" "true"
|
|
// ERROR: Unresolved reference: Foo
|
|
|
|
fun test<U>(u: U) {
|
|
val a = J(u).Foo(u)
|
|
}
|
|
|