9 lines
87 B
Plaintext
9 lines
87 B
Plaintext
class A {
|
|
fun test(b: B) {
|
|
b()
|
|
}
|
|
}
|
|
|
|
class B() {
|
|
fun A.invoke() {}
|
|
} |