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,3 @@
public class A {
public int x;
}
@@ -0,0 +1,5 @@
public class B {
void f (A a) {
int y = a.x;
}
}
@@ -0,0 +1,5 @@
public class C extends A {
int f (){
return x;
}
}