Files
kotlin/idea/testData/quickfix/createFromUsage/createClass/callExpression/callWithGenericJavaReceiver.after.kt

6 lines
114 B
Kotlin
Vendored

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