mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
11 lines
237 B
Java
11 lines
237 B
Java
// "Bind method parameters to fields" "true-preview"
|
|
|
|
class Bar {
|
|
private int f1;
|
|
private static boolean f2;
|
|
private static final int f3 = 123;
|
|
|
|
static void <caret>test(int f1, int f2, int f3, int f4) {
|
|
|
|
}
|
|
} |