diff --git a/test/sandbox/lex/lolfx.l b/test/sandbox/lex/lolfx.l index 8e1164ae..1398594f 100644 --- a/test/sandbox/lex/lolfx.l +++ b/test/sandbox/lex/lolfx.l @@ -44,7 +44,8 @@ */ "//" { BEGIN(CPP_COMMENT); } -.*\n { BEGIN(INITIAL); } +\n { BEGIN(INITIAL); } +.* { } %%