This commit is contained in:
Dmitry Jemerov
2009-09-11 16:24:07 +04:00
parent 8b0e19eb68
commit f3d10757e9
69 changed files with 6 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
package pack1;
public class A {
}

View File

@@ -0,0 +1,7 @@
package pack1;
public class C {
public static void foo() {
new B(){};
}
}

View File

@@ -0,0 +1,5 @@
package pack2;
public class B {
protected B(){}
}

View File

@@ -0,0 +1,7 @@
package pack1;
public class A {
public static void foo() {
new B(){};
}
}

View File

@@ -0,0 +1,4 @@
package pack1;
public class C {
}

View File

@@ -0,0 +1,5 @@
package pack2;
public class B {
protected B(){}
}