Files
kotlin-fork/nj2k/testData/newJ2k/constructors/artificialPrimary.kt
T
Ilya Kirillov d0f0b9e355 New J2K: do not allow field and method declarations to be internal
For internal members new names are generated,
So, references to them from Java will be broken
2019-10-12 12:50:32 +03:00

14 lines
227 B
Kotlin
Vendored

// ERROR: Property must be initialized or be abstract
class Test {
private val s: String
var b = false
var d = 0.0
constructor() {
b = true
}
constructor(s: String) {
this.s = s
}
}