summaryrefslogtreecommitdiffstats
path: root/tests/snippets/c/test_preproc_file.txt
blob: 2b5449e633ce3f6aa29be518265cca8e400b4f58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---input---
#include <foo>
#    include <foo>

---tokens---
'#'           Comment.Preproc
'include'     Comment.Preproc
' '           Text.Whitespace
'<foo>'       Comment.PreprocFile
'\n'          Comment.Preproc

'#'           Comment.Preproc
'    '        Text.Whitespace
'include'     Comment.Preproc
' '           Text.Whitespace
'<foo>'       Comment.PreprocFile
'\n'          Comment.Preproc