inline: do not warn about non existing write usages

This commit is contained in:
anna
2010-06-24 13:45:18 +04:00
parent 456401833f
commit d2576e4aea
4 changed files with 31 additions and 2 deletions
@@ -0,0 +1,7 @@
class Test {
void get(){
boolean toInline = false;
if (!to<caret>Inline) return;
}
}
@@ -0,0 +1,6 @@
class Test {
void get(){
if (!false) return;
}
}