mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
14 lines
278 B
Java
14 lines
278 B
Java
// "Create constant field 'MODULE' in 'Usage'" "true"
|
|
class Usage {
|
|
private static final Object MODULE = ;
|
|
|
|
void usage() {
|
|
switch (null) {
|
|
case CLASS -> symbols.add(1);
|
|
case INTERFACE -> symbols.add(2);
|
|
case MODULE -> symbols.add(42);
|
|
}
|
|
}
|
|
}
|
|
|