10 lines
88 B
Plaintext
10 lines
88 B
Plaintext
|
class Test{
|
||
|
test(){
|
||
|
return 1;
|
||
|
}
|
||
|
test2(){
|
||
|
i;
|
||
|
i = test();
|
||
|
}
|
||
|
}
|