Finishing setting up tests (compiler server).

This commit is contained in:
Dmitry Boulytchev (dboulytchev@gmail.com)
2012-02-02 01:13:16 +04:00
parent 24d086dedb
commit 7d194f269e
2643 changed files with 34 additions and 8 deletions
@@ -0,0 +1,15 @@
public class A {
int a;
public A (int a) {
this.a = a;
}
public static class B {
int b;
public B (int b) {
this.b = b;
}
}
}