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
13 lines
200 B
Java
13 lines
200 B
Java
// "Replace call with method body" "true"
|
|
|
|
class Test {
|
|
void test() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
int a =6;
|
|
}
|
|
}.r<caret>un();
|
|
int a =5;
|
|
}
|
|
} |