mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
allow to create inner class on qualifier (IDEA-129663)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
// "Create inner class 'ArrayList'" "true"
|
||||
public class Test {
|
||||
public static void main() {
|
||||
Inner q = new Inner();
|
||||
q.new ArrayList();
|
||||
}
|
||||
|
||||
static class Inner {
|
||||
public class ArrayList {
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// "Create inner class 'ArrayList'" "false"
|
||||
// "Create inner class 'ArrayList'" "true"
|
||||
public class Test {
|
||||
public static void main() {
|
||||
Inner q = new Inner();
|
||||
|
||||
Reference in New Issue
Block a user