Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnTrait.kt
T
2015-05-13 16:13:13 +02:00

7 lines
108 B
Kotlin

// "Create function 'foo'" "true"
interface T
fun test(t: T) {
val b: Boolean = t.<caret>foo("1", 2)
}