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

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