JavaCompilerCore/resources/bytecode/javFiles/Assign.jav
Daniel Holle 7811ecce63
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 49s
Fix non chainable parts in dotted expression
2024-10-04 16:41:05 +02:00

15 lines
217 B
Java

import java.lang.Integer;
public class Assign {
public x = 10;
public y = this;
public call() {
return this;
}
public m() {
this.call().call().y.x = 20;
return x;
}
}