mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-20 07:03:05 -03:00
Reorganize tests into a real spec suite
This commit is contained in:
13
spec/tests/c/test_preproc_file4.txt
Normal file
13
spec/tests/c/test_preproc_file4.txt
Normal file
@ -0,0 +1,13 @@
|
||||
Comments can precede preprocessor macros
|
||||
|
||||
---input---
|
||||
/* Comment */ /* Another */ #define FOO 0
|
||||
|
||||
---tokens---
|
||||
'/* Comment */' Comment.Multiline
|
||||
' ' Text.Whitespace
|
||||
'/* Another */' Comment.Multiline
|
||||
' ' Text.Whitespace
|
||||
'#' Comment.Preproc
|
||||
'define FOO 0' Comment.Preproc
|
||||
'\n' Comment.Preproc
|
Reference in New Issue
Block a user