13 lines
105 B
Plaintext
Vendored
13 lines
105 B
Plaintext
Vendored
class A {
|
|
|
|
}
|
|
|
|
fun A.foo(a: Int, c: Any) {
|
|
|
|
}
|
|
|
|
class B {
|
|
fun bar(a: A) {
|
|
a.foo(1, "!")
|
|
}
|
|
} |