IDEA-79381 Exclude from Import not working for non-static inner classes in excluded packages

This commit is contained in:
peter
2011-12-29 17:45:52 +01:00
parent a2b643978a
commit 4ba1cc4d29
12 changed files with 69 additions and 11 deletions

View File

@@ -0,0 +1,3 @@
public class Main {
Inner<caret>
}

View File

@@ -0,0 +1,6 @@
public class Main {
void f(foo.Outer outer) {
outer.new In<caret>x
}
}

View File

@@ -0,0 +1,5 @@
public class Main {
void f(foo.Outer.In<caret>x outer) {
}
}