blob: 60c70472b2b02ba723588664030c1b643914471a [file] [log] [blame]
import org.jetbrains.annotations.*;
public class Infer {
enum E {;
}
void trySwitchEnum(E e) {
switch (e) {
}
}
}