Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/funOnJavaInterface.before.Main.kt
2016-07-20 15:39:19 +03:00

6 lines
158 B
Kotlin
Vendored

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