15 lines
217 B
Plaintext
15 lines
217 B
Plaintext
|
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;
|
||
|
}
|
||
|
}
|