aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/struct-ns2.c
blob: b38af0ab562f2f10835a9f9a1afd6f62e03c0a4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static void
g (struct Bar { int i; } *x)
{
  struct Bar y;
  y.i = 1;
}

static void
h (void)
{
  // This is not in scope and should barf loudly.
  struct Bar y;
  y.i = 1;
}