1/*
2 * Copyright 2014, NICTA
3 *
4 * This software may be distributed and modified according to the terms of
5 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
6 * See "LICENSE_BSD2.txt" for details.
7 *
8 * @TAG(NICTA_BSD)
9 */
10
11struct s {
12  int fld1;
13  int *fld2;
14  char x;
15};
16
17struct s svar;
18
19struct t {
20  int fld1;
21  struct t* next;
22};
23
24struct t tvar;
25
26