testdata for IDEA-154080

This commit is contained in:
Anna Kozlova
2018-08-17 17:54:41 +03:00
parent 4e6957d086
commit ae626fce8f
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Cast to 'java.lang.Integer'" "true"
class A {
{
Number n = 0;
Integer i = (Integer) n;
}
}
@@ -0,0 +1,7 @@
// "Cast to 'java.lang.Integer'" "true"
class A {
{
Number n = 0;
Integer i = n;<caret>
}
}