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

6 lines
156 B
Kotlin
Vendored

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