fixed tests for Linux

This commit is contained in:
Alexey Kudravtsev
2010-10-06 12:38:54 +04:00
parent 7adb624794
commit fbf92e3cb2
15 changed files with 11 additions and 11 deletions
@@ -0,0 +1,17 @@
public class A {
private class <caret>B {
public B() {
}
}
static void m(A a) {
B b = new A().new B();
B b1 = a.new B();
B b2 = new B();
B b3 = getA().new B();
}
static A getA(){return null;}
}