mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 18:13:59 +07:00
11 lines
130 B
Java
11 lines
130 B
Java
class SideEffectReturn {
|
|
private void testLoop(String value) {
|
|
Test.valueOf(value);
|
|
}
|
|
|
|
enum Test {
|
|
A,
|
|
B
|
|
|
|
}
|
|
} |