mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-01 01:50:37 +07:00
9092a09789
GitOrigin-RevId: ad1d93533626f5e76a3f53c5ab25b06a5aa07f1e
12 lines
271 B
Java
12 lines
271 B
Java
// "Bind method parameters to fields" "true-preview"
|
|
|
|
class Bar {
|
|
private static int f4;
|
|
private int f1;
|
|
private static boolean f2;
|
|
private static final int f3 = 123;
|
|
|
|
static void test(int f1, int f2, int f3, int f4) {
|
|
Bar.f4 = f4;
|
|
}
|
|
} |