introduce over non-valid expression (IDEA-26836)

This commit is contained in:
anna
2010-07-27 14:59:01 +04:00
parent b6c253f29c
commit 0bbbfef619
4 changed files with 39 additions and 6 deletions
@@ -0,0 +1,9 @@
class A {
public void test(boolean a, boolean b) {
if (true && <selection>a &&
b
//some comment
</selection>
);
}
}