summaryrefslogtreecommitdiffstats
path: root/tests/snippets/c/test_label.txt
blob: 6f4ee804ef396b913a22e75cbca63abd51fad4b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---input---
int main()
{
foo:
  goto foo;
}

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

'{'           Punctuation
'\n'          Text.Whitespace

'foo'         Name.Label
':'           Punctuation
'\n'          Text.Whitespace

'  '          Text.Whitespace
'goto'        Keyword
' '           Text.Whitespace
'foo'         Name
';'           Punctuation
'\n'          Text.Whitespace

'}'           Punctuation
'\n'          Text.Whitespace