aboutsummaryrefslogtreecommitdiff
path: root/contrib/netbsd-tests/usr.bin/xlint/lint1/d_typename_as_var.c
blob: 248dc7558b5269de7373f27e0a29c057cc171b59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
typedef char h[10];

typedef struct {
	int i;
	char *c;
} fh;

struct foo {
	fh h;
	struct {
		int x;
		int y;
	} fl;
};