Reports a labeled statement inside a switch statement, which often results from a typo.

Example:


    switch(x)
    {
        case 1:
        case2:   //typo!
        case 3:
            break;
    }