disable on demand static import for private classes (IDEA-74951)

This commit is contained in:
anna
2011-11-23 12:37:45 +01:00
parent 34c848fa0c
commit c0a54042f2
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
// "Add on demand static import for 'test.Outer.State'" "false"
package test;
public class Outer {
private enum State { REDONE, UNDONE }
private State state = Sta<caret>te.REDONE;
}