mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-26 13:23:17 +07:00
a1d48e0782
GitOrigin-RevId: 2f5d085c687ac6e13c2a1258c5aaa8983f77ad09
13 lines
264 B
Java
13 lines
264 B
Java
// "Create field 'JANUARY'" "false"
|
|
class ExistingField {
|
|
|
|
public record Month1(Integer JANUARY) {
|
|
}
|
|
|
|
public static void someMethod(){
|
|
check("Some", Month1.JANUARY<caret>, 17);
|
|
}
|
|
|
|
private static void check(String some, Integer january, int i) {
|
|
}
|
|
} |