Files
Tagir Valeev 4c29ff02f6 [java-inspections] TrivialFunctionalExpressionUsageInspection: solve naming conflicts instead of keeping the block
Keeping the block does not work correctly for blocks with return statement

GitOrigin-RevId: d14e22e793840d74957928a8d7748275db4929ef
2023-04-24 11:48:09 +00:00

8 lines
118 B
Java

// "Replace call with method body" "true-preview"
class Test {
void test() {
int a1 =6;
int a =5;
}
}