moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 20:58:23 +04:00
parent 7056118d36
commit 530ef44118
13 changed files with 6 additions and 1 deletions
@@ -0,0 +1,10 @@
// "b false" "true"
public class Test {
void foo(boolean f, boolean <caret>b){
if (f) {
Syste.out.print(f);
}
}
void bar(){foo(false, false);}
void bar1(){foo(true, false);}
}