Assignments to qualified expressions are supported in CF
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
class Test {
|
||||
var x : Int;
|
||||
}
|
||||
|
||||
fun assignments() : Unit {
|
||||
var x = 1
|
||||
x = 2
|
||||
@@ -7,4 +11,7 @@ fun assignments() : Unit {
|
||||
|
||||
val y = true && false
|
||||
val z = false && true
|
||||
|
||||
val t = new Test();
|
||||
t.x = 1
|
||||
}
|
||||
Reference in New Issue
Block a user