import org.jetbrains.annotations.*; public class Infer { enum E {; } void trySwitchEnum(E e) { switch (e) { } } }