mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +07:00
10 lines
188 B
Java
10 lines
188 B
Java
// "Move assignment to field declaration" "false"
|
|
import java.util.function.IntSupplier;
|
|
|
|
public class Main {
|
|
int i;
|
|
|
|
public void test() {
|
|
IntSupplier r = () -> i <caret>= 1;
|
|
}
|
|
} |