mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 40dc2a001f35af6cc5cb7db8aeb4c0304016b9fd
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());
|
|
|
|
}
|
|
}
|