aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/init/aggr12.C
blob: 0c4bd3a2056c5e1a88859fd4193fca4d9e4b6332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/49132

struct A {
  int& m;
};

A a1 = {}; // { dg-error "uninitialized reference" }

struct B {
  A a;
};

B b1 = {}; // { dg-error "uninitialized reference" }