Files
kotlin-fork/compiler/testData/diagnostics/tests/declarationChecks/kt2142.kt
T

9 lines
144 B
Kotlin
Vendored

// FIR_IDENTICAL
//KT-2142 function local classes do not work
package a
fun foo() {
class Foo() {}
Foo() // Unresolved reference Foo
}