Files
kotlin-fork/idea/testData/hierarchy/calls/callers/javaConstructor/main1.kt
T
2015-03-21 03:29:01 +03:00

19 lines
221 B
Kotlin

open class JA: KA {
constructor() {
}
constructor(a: Int): super() {
}
public var name: String = KA().getName()
public open fun newKA(): KA? {
return KA()
}
}
class JA2: KA() {
}