diff options
Diffstat (limited to 'test/nestedcomm.lm')
-rw-r--r-- | test/nestedcomm.lm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/nestedcomm.lm b/test/nestedcomm.lm index f5ed3609..e01be456 100644 --- a/test/nestedcomm.lm +++ b/test/nestedcomm.lm @@ -13,7 +13,9 @@ lex start token open_paren /'('/ { - input.push_ignore( parse_stop nested_comment( stdin ) ) + parse_stop NC: nested_comment( stdin ) + print( %NC '\n' ) + input.push_ignore( NC ) } } |