1 // PR c++/84593
2 // { dg-do compile { target c++14 } }
3 
4 struct a {
5   int x;
6   int c = 0;
7   int &b;
8 } c = {}; // { dg-error "uninitialized reference" }
9