mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 02:32:34 +07:00
GitOrigin-RevId: 41257880f78e6cb7d301e75b8453baeb6780b57d
13 lines
201 B
Java
13 lines
201 B
Java
class X {
|
|
enum E {A}
|
|
|
|
void print(E e) {
|
|
switch (e) {
|
|
case A -> printT<caret>oInline(e);
|
|
}
|
|
}
|
|
|
|
void printToInline(E e) {
|
|
System.out.println(e);
|
|
}
|
|
} |