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