blob: 6b095d2586cc98bdbc59e8e0f8f0d5a910bac790 [file] [log] [blame]
enum E {
CONS
}
class Foo {
void foo (E e) {
switch (e) {
case CONS:<caret>
}
}
}