It's not impossible that switching on a constant makes sense. Consider:
void f( const int x ) {
switch( x ) {
...
}
}
Switching on a literal constant would rarely make sense, however. But it is legal.
Edit: Thinking about it, there is case where switching on a literal makes perfect senssense:
int main() {
switch( CONFIG ) {
...
}
}
where the program was copiled compiled with:
g++ -DCONFIG=42 foo.cpp
