a1e86e8bfa
(cherry picked from commit a51d3fc)
9 lines
154 B
Plaintext
Vendored
9 lines
154 B
Plaintext
Vendored
// "Create member function 'T.foo'" "true"
|
|
|
|
interface T {
|
|
fun foo(s: String, i: Int): Boolean
|
|
}
|
|
|
|
fun test(t: T) {
|
|
val b: Boolean = t.foo("1", 2)
|
|
} |