reinit type selection manager after exprs invalidation (IDEA-72129)

This commit is contained in:
anna
2011-07-15 11:25:58 +04:00
parent 7b5a173a6b
commit 9e5beea3e1
4 changed files with 42 additions and 2 deletions
@@ -0,0 +1,10 @@
public class Derr {
public static void main(String[] args) {
long value;
value = new Lo<caret>ng(1);
value = new Long(1);
value = new Long(1);
}
}
@@ -0,0 +1,12 @@
public class Derr {
public static final Long ONE = new Long(1);
public static void main(String[] args) {
long value;
value = ONE;
value = ONE;
value = ONE;
}
}