mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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) {
|
|
}
|
|
} |