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

11 lines
270 B
Plaintext
Vendored

// "Create member function 'T.foo'" "true"
interface T {
fun foo(s: String, i: Int): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
fun test(t: T) {
val b: Boolean = t.foo("1", 2)
}