Files
kotlin-fork/compiler/testData/diagnostics/tests/objects/nestedClassInAnonymousObject.fir.kt
T

12 lines
132 B
Kotlin
Vendored

class X {
val foo = object {
class Foo
}
fun test() {
object {
class Foo
}
}
}