class X { enum E {A} void print(E e) { switch (e) { case A -> printToInline(e); } } void printToInline(E e) { System.out.println(e); } }