New J2K: fix testData

This commit is contained in:
Ilya Kirillov
2019-05-29 14:22:26 +03:00
parent 3a98b49556
commit ab26061b5e
39 changed files with 229 additions and 235 deletions
@@ -1,11 +1,11 @@
class C {
protected var x: String? = ""
protected var x = ""
fun getX(): String? {
fun getX(): String {
return x
}
fun setX(x: String?) {
fun setX(x: String) {
println("setter invoked")
this.x = x
}