blob: 6ce35d4847e7ad197f6a83b3a06820cf8fee3013 [file] [log] [blame]
public enum Foo {
A, B, C;
void f(Foo foo) {
switch (foo) {
}
}
}