Files
kotlin-fork/compiler/testData/cli/jvm/signatureClash.kt
T
2014-06-19 22:10:44 +04:00

8 lines
91 B
Kotlin

class A {
fun getA(): Int = 1
val a: Int = 1
}
fun getB(): Int = 1
val b: Int = 1