blob: 4e13fc5c9d83f86a2b9264a5fd086b514b50b814 [file] [log] [blame]
// PR c++/84927 - ICE with NSDMI and reference
// { dg-do compile { target c++14 } }
struct A
{
int& r;
int i = r;
};
void foo()
{
int j;
A a = A{j};
}