blob: d875f53d9ec91ba57e2b445c6d9f3f1348597c5c [file] [log] [blame]
// { dg-do compile }
// { dg-options "-O2 -std=c++2a" } */
struct a {};
struct b { [[no_unique_address]] a aq; };
struct c {
int d;
[[no_unique_address]] b e;
};
c f() {return {};}
void g() { f(); }