This commit is contained in:
Dmitry Jemerov
2009-09-11 16:52:51 +04:00
parent 6b902c21b2
commit 709e8381fc
31 changed files with 6 additions and 0 deletions
@@ -0,0 +1,4 @@
package pack1;
public class MyList {
}
@@ -0,0 +1,10 @@
package pack2;
import java.util.List;
import pack1.*;
public class Usage {
int method() {
List list = null;
MyList myList = null;
}
}
@@ -0,0 +1,9 @@
package pack2;
import java.util.*;
public class Usage2 {
int method() {
List list = null;
pack1.MyList myList = null;
}
}