xref: /netbsd-src/external/bsd/flex/dist/tests/quote_in_comment.l (revision 56bd85463476f90bb489799c99292bb30d6771c0)
1 %option 8bit noyywrap
2 %%
3 .|\n	{ ECHO;
4    //' "
5   }
6 %%
7 int
8 main (void)
9 {
10     yyin = stdin;
11     yyout = stdout;
12     while (yylex())
13         ;
14     printf("TEST RETURNING OK.\n");
15     return 0;
16 }
17