mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
test++
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user