562488b348
#KT-13365 Fixed
11 lines
270 B
Plaintext
Vendored
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)
|
|
} |