NPE: check raw substitution during inline

This commit is contained in:
anna
2010-06-16 12:43:29 +04:00
parent 45c91b9b44
commit bfc75928b9
4 changed files with 38 additions and 0 deletions
@@ -0,0 +1,15 @@
public class NotRaw<T> {
}
class Raw extends NotRaw {
void foo() {
Object result;
Object tt = null;
if ( null == null) {
result = null;
} else
result = null;
Object o = result;
}
}