Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/abstract/interfaceNoExplicitReceiver.kt.after
2016-07-20 15:39:07 +03:00

10 lines
182 B
Plaintext
Vendored

// "Create abstract function 'foo'" "true"
interface A {
fun bar(b: Boolean) {}
fun test() {
bar(foo(1, "2"))
}
fun foo<caret>(i: Int, s: String): Boolean
}