switch statement contains 'default' but no 'case' labels
The switch statement specifies a default case only. This is equivalent to a sequence of statements.
Example
void func(int i) { switch(i) { default: func(8); } // warning 4065 }