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

8 lines
127 B
Kotlin
Vendored

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