mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
13 lines
158 B
Java
13 lines
158 B
Java
class C {
|
|
static enum E {
|
|
A
|
|
}
|
|
|
|
void x(String s1, String s2) {}
|
|
|
|
private void y(E e) {
|
|
x(e.toString(), e.toString());
|
|
|
|
}
|
|
}
|