summaryrefslogtreecommitdiff
path: root/tests/quote_in_comment.l
diff options
context:
space:
mode:
Diffstat (limited to 'tests/quote_in_comment.l')
-rw-r--r--tests/quote_in_comment.l16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/quote_in_comment.l b/tests/quote_in_comment.l
deleted file mode 100644
index a5743c2..0000000
--- a/tests/quote_in_comment.l
+++ /dev/null
@@ -1,16 +0,0 @@
-%option 8bit noyywrap
-%%
-.|\n { ECHO;
- //' "
- }
-%%
-int
-main (void)
-{
- yyin = stdin;
- yyout = stdout;
- while (yylex())
- ;
- printf("TEST RETURNING OK.\n");
- return 0;
-}