disable import static constant at annotation position

This commit is contained in:
Anna.Kozlova
2017-04-21 20:03:27 +02:00
parent 258d275306
commit 85cdf34c8a
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,10 @@
// "Import static constant 'foo.B.K'" "false"
package foo;
@<caret>K
public class X {
}
class B {
public static Object K = null;
}