Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/call/funOnTrait.kt.after
T
2019-11-13 08:37:25 +09:00

11 lines
198 B
Plaintext
Vendored

// "Create member function 'T.foo'" "true"
interface T {
fun foo(s: String, i: Int): Boolean {
TODO("Not yet implemented")
}
}
fun test(t: T) {
val b: Boolean = t.foo("1", 2)
}