forked from JavaTX/JavaCompilerCore
18 lines
148 B
Plaintext
18 lines
148 B
Plaintext
|
public class TestSimpleBlocks{
|
||
|
|
||
|
public m(a){
|
||
|
{
|
||
|
d;
|
||
|
d = 'a';
|
||
|
{
|
||
|
c;
|
||
|
c = d;
|
||
|
}
|
||
|
{
|
||
|
c;
|
||
|
c = d==a;
|
||
|
}
|
||
|
}
|
||
|
return a;
|
||
|
}
|
||
|
}
|