This commit is contained in:
Dmitry Jemerov
2009-09-10 21:51:16 +04:00
parent fc3eb6dd3d
commit 9f4d10da95
9 changed files with 8 additions and 2 deletions
@@ -0,0 +1,16 @@
class InvertBooleanParameterTest {
void foo(boolean <caret>b) {
boolean c = !b;
b = false;
}
{
foo(true);
}
}
class Drv extends InvertBooleanParameterTest {
void foo(boolean b) {
super.foo(b);
}
}