Files
kotlin-fork/compiler/testData/diagnostics/tests/redeclarations/RedeclarationInDefaultObject.fir.kt
T

6 lines
116 B
Kotlin
Vendored

class A {
companion object B {
<!REDECLARATION!>class G<!>
<!REDECLARATION!>val G = 1<!>
}
}