1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* $NetBSD: token_decl.c,v 1.1 2021/10/18 22:30:34 rillig Exp $ */
/* $FreeBSD$ */
/*
* Tests for declarations.
*
* Indent distinguishes global and local declarations.
*
* Declarations can be for functions or for variables.
*/
#indent input
int global_var;
int global_array = [1,2,3,4];
int global_array = [
1
,2,
3,
4,
];
#indent end
#indent run -di0
int global_var;
int global_array = [1, 2, 3, 4];
int global_array = [
1
,2,
3,
4,
];
#indent end
|