Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/externalInterfaceClassLiteral.kt
T
2023-04-11 13:20:42 +00:00

11 lines
128 B
Kotlin
Vendored

// FIR_IDENTICAL
// ISSUE: KT-57822
external interface Foo
fun bar() {
foo()::class.simpleName
}
external fun foo(): Foo