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

11 lines
126 B
Kotlin
Vendored

// FIR_IDENTICAL
class A() {
val a: Int = 1
fun a(): Int = 2
}
class B() {
fun b(): Int = 2
val b: Int = 1
}