Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/beforeFunOnTrait.kt
T
2015-02-20 17:28:41 +03:00

7 lines
104 B
Kotlin

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