mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Fixes IDEA-196540 TrivialFunctionalExpressionUsageInspection produces code with variable redefinitions
10 lines
130 B
Java
10 lines
130 B
Java
// "Replace call with method body" "true"
|
|
|
|
class Test {
|
|
void test() {
|
|
{
|
|
int a = 6;
|
|
}
|
|
int a =5;
|
|
}
|
|
} |