moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 21:25:16 +04:00
parent 82276bad7d
commit 25140c5070
9 changed files with 6 additions and 1 deletions
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems></problems>
@@ -0,0 +1,13 @@
public class Test {
private void foo(String... args) {}
public void bar() {
foo("foo", "bar");
foo("bla");
}
public static void main(String[] args){
new Test().bar();
}
}