Files
kotlin-fork/compiler/testData/diagnostics/tests/duplicateJvmSignature/functionAndProperty/localClassInClass.fir.kt
T

8 lines
114 B
Kotlin
Vendored

class Outer {
fun foo() {
class C {
val x = 1
fun getX() = 1
}
}
}