Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnTrait.kt
T

7 lines
115 B
Kotlin
Vendored

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