Files
kotlin-fork/idea/testData/quickfix/migration/jsExternal/funPlacementOnCompanionObjectJsRuntime.kt
T

11 lines
137 B
Kotlin
Vendored

// "Create member function 'A.Companion.foo'" "true"
// JS
external class A {
companion object
}
fun test() {
A.<caret>foo()
}