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

10 lines
109 B
Kotlin
Vendored

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