---input---
int main()
{
    switch (0)
    {
        case 0 :
        default :
            ;
    }
}

---tokens---
'int'         Keyword.Type
' '           Text
'main'        Name.Function
'('           Punctuation
')'           Punctuation
'\n'          Text

'{'           Punctuation
'\n'          Text

'    '        Text
'switch'      Keyword
' '           Text
'('           Punctuation
'0'           Literal.Number.Integer
')'           Punctuation
'\n'          Text

'    '        Text
'{'           Punctuation
'\n'          Text

'        '    Text
'case'        Keyword
' '           Text
'0'           Literal.Number.Integer
' '           Text
':'           Operator
'\n'          Text

'        '    Text
'default'     Keyword
' '           Text
':'           Operator
'\n'          Text

'            ' Text
';'           Punctuation
'\n'          Text

'    '        Text
'}'           Punctuation
'\n'          Text

'}'           Punctuation
'\n'          Text
