invert boolean parameter: process recursive calls with care (IDEA-131261)

This commit is contained in:
Anna Kozlova
2014-10-22 10:34:44 +02:00
parent 201f69773c
commit cd02a08a01
3 changed files with 41 additions and 4 deletions
@@ -0,0 +1,11 @@
class InvertBooleanParameterTest {
void foo(boolean bInverted) {
boolean c = bInverted;
foo(bInverted);
foo(false);
}
{
foo(false);
}
}