J2K: adapted for default visibility modifier 'public'
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
// ERROR: Property must be initialized or be abstract
|
||||
public class Test {
|
||||
class Test {
|
||||
private val s: String
|
||||
var b: Boolean = false
|
||||
var d: Double = 0.toDouble()
|
||||
internal var b: Boolean = false
|
||||
internal var d: Double = 0.toDouble()
|
||||
|
||||
public constructor() {
|
||||
constructor() {
|
||||
b = true
|
||||
}
|
||||
|
||||
public constructor(s: String) {
|
||||
constructor(s: String) {
|
||||
this.s = s
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user