31560217f8
^KT-62724 Fixed
17 lines
376 B
Kotlin
Vendored
17 lines
376 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
@JsFun("() => {}")
|
|
external fun topLevelExternalFun(): Unit
|
|
|
|
external class ExternalClass {
|
|
<!WRONG_JS_FUN_TARGET!>@JsFun("() => {}")<!>
|
|
fun memberFun(): Unit
|
|
}
|
|
|
|
<!WRONG_JS_FUN_TARGET!>@JsFun("() => {}")<!>
|
|
fun topLevelNonExternalFun(): Unit {}
|
|
|
|
class NonExternalClass {
|
|
<!WRONG_JS_FUN_TARGET!>@JsFun("() => {}")<!>
|
|
fun memberFun(): Unit {}
|
|
}
|