mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
invert boolean parameter: process recursive calls with care (IDEA-131261)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class InvertBooleanParameterTest {
|
||||
void foo(boolean bInverted) {
|
||||
boolean c = bInverted;
|
||||
foo(bInverted);
|
||||
foo(false);
|
||||
}
|
||||
|
||||
{
|
||||
foo(false);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user