Files
kotlin-fork/compiler/testData/diagnostics/tests/ValAndFunOverrideCompatibilityClash.jet
T
2012-03-12 22:54:24 +04:00

10 lines
133 B
Plaintext

class Foo1() : java.util.ArrayList<Int>()
open class Bar() {
fun v() : Int = 1
val v : Int = 1
}
class Barr() : Bar() {}