mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
Fixes EA-206371 - [ExtractVar] assert: VariableExtractor.replaceOccurrences GitOrigin-RevId: fedfcf32e5ffa4bf9c32dda913531cba8b0bf6bd
13 lines
156 B
Java
13 lines
156 B
Java
import java.util.function.*;
|
|
|
|
class X{
|
|
int foo;
|
|
|
|
void test() {
|
|
IntSupplier r = () -> {
|
|
int foo = this.foo;
|
|
return foo;
|
|
};
|
|
}
|
|
}
|