<html> | |
<body> | |
Reports labelled statements inside of <b>switch</b> statements. | |
While occasionally intended, this construction is often the result of a typo. | |
<pre> | |
<b>switch</b>(x) | |
{ | |
<b>case</b> 1: | |
case2: //typo! | |
<b>case</b> 3: | |
<b>break</b>; | |
} | |
</pre> | |
<!-- tooltip end --> | |
<p> | |
</body> | |
</html> |