forked from JavaTX/JavaCompilerCore
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Chain {
|
||
|
x = 5;
|
||
|
|
||
|
chain() {
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
m() {
|
||
|
return this.chain().chain().chain().x;
|
||
|
}
|
||
|
}
|