JavaPatternMatching/bin/mycompiler/test/blocks/TestSimpleBlocks.jav

18 lines
148 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
public class TestSimpleBlocks{
public m(a){
{
d;
d = 'a';
{
c;
c = d;
}
{
c;
c = d==a;
}
}
return a;
}
}