blob: a5805525bad12dedcb8a89baa742728dcbef11e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $NetBSD: lsym_eof.c,v 1.4 2022/04/24 10:36:37 rillig Exp $ */
/*
* Tests for the token lsym_eof, which represents the end of the input file.
*
* The end of a file typically occurs after a top-level declaration, or after
* a preprocessing directive. Everything else is a syntax error.
*/
//indent input
int decl;
//indent end
//indent run
int decl;
//indent end
|