mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 01:11:31 +07:00
GitOrigin-RevId: 1239c130bdc0a2a0e9ae5a335d8ae342995c6475
13 lines
164 B
Java
13 lines
164 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class Infer {
|
|
enum E {;
|
|
}
|
|
|
|
void trySwitchEnum(@NotNull E e) {
|
|
switch (e) {
|
|
|
|
}
|
|
}
|
|
|
|
} |