blob: daa8f5d9d8a7cdaa20716ead9259c177b7de1425 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $NetBSD: lsym_storage_class.c,v 1.6 2023/06/25 19:29:57 rillig Exp $ */
/*
* Tests for the token lsym_modifier (formerly named lsym_storage_class), which
* represents a type modifier such as 'const', a variable modifier such as a
* storage class, or a function modifier such as 'inline'.
*/
//indent input
static int definition_with_internal_linkage;
extern int declaration_with_external_linkage;
int definition_with_external_linkage;
_Complex double cd;
_Imaginary double id;
complex double cd;
imaginary double id;
// The token after a modifier (in this case 'dc') is always interpreted as a
// type name, therefore it is not indented by 16 but by a single space.
double complex dc;
//indent end
//indent run-equals-input
|