blob: 397513de6d9d3a464bff2798f64a1caeef0b331e [file] [log] [blame]
enum Foo {
FOO, BAR
}
class Main {
{
Foo a;
Foo b;
switch (a) {
case FOO: b = Foo.BAR;<caret>
}
}
}