Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/jvmField/clashWithCompanionObjectField.fir.kt
T

8 lines
94 B
Kotlin
Vendored

class A {
@JvmField val clash = 1;
companion object {
val clash = 1;
}
}