mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
14 lines
153 B
Java
14 lines
153 B
Java
|
|
enum A {
|
|
A(foo("a")),
|
|
B(foo("b")),
|
|
C(foo("c")),
|
|
;
|
|
|
|
A(final String c) {
|
|
}
|
|
|
|
private static String f<caret>oo(String x) {
|
|
return x;
|
|
}
|
|
} |