aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/lexyacc/two-grammars/g1.l
blob: 369f1c919da59fd1cf6042b8d5db5ffce13e961c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%option noyywrap

%{
#include <g1.tab.h>
#ifdef _MSC_BUILD
#pragma message("whatever")
#else
#pragma whatever
#endif
void g1error(const char *e) { }
%}

%%

%%