13 lines
156 B
Plaintext
Vendored
13 lines
156 B
Plaintext
Vendored
// "Create member function 'A.Companion.foo'" "true"
|
|
// JS
|
|
|
|
external class A {
|
|
companion object {
|
|
fun foo()
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
A.foo()
|
|
}
|