summaryrefslogtreecommitdiff
path: root/tests/quote_in_comment.l
blob: a5743c2cf248a5d2b2c863995b7cee7510ea9f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%option 8bit noyywrap
%%
.|\n	{ ECHO;
   //' "
  }
%%
int
main (void)
{
    yyin = stdin;
    yyout = stdout;
    while (yylex())
        ;
    printf("TEST RETURNING OK.\n");
    return 0;
}