Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/funOnJavaInterface.after.kt

6 lines
149 B
Kotlin
Vendored

// "Create member function 'foo'" "true"
// ERROR: Unresolved reference: foo
internal fun test(a: A): Int? {
return a.foo<String, Int>(1, "2")
}