aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/crash7.C
blob: 0f581988b1f6868c89e988a70ece48452da779b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Build don't link:

void f() 
{
  union {
  private:
    int i; // ERROR - private
  } u;

  u.i = 3; // ERROR - within this context
}