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

12 lines
132 B
Kotlin
Vendored

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