aboutsummaryrefslogtreecommitdiff
path: root/src/lextest/scan.l
blob: 6f801376a335f9ea8fc2cdfde37abfe6c4921eed (plain)
1
2
3
4
5
6
7
8
9
10
/*
	This should work, but non-patched flex 2.5.3 fails because input()
	doesn't return EOF
	Bruce Momjian <root@candle.pha.pa.us>
*/
%%
.		{
				while (input() != EOF)
				;
		}