Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/abstract/interfaceNoExplicitReceiver.kt.after
T
Alexey Sedunov 49b6811b44 Create from Usage: Support "Create abstract function/property" inside an abstract class
#KT-7492 Fixed
(cherry picked from commit 75f6b7f)
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
}