what happens in the following case


Code:
switch(somechar)
{
    ...
    ....
    case '=' : 
   case 'D' ://do something
            break;
 }

will case 'D" also be entered when the character is "=" ??