2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / nrv19.C
blob385593cc90c68385453875081405d528ca77b3aa
1 // PR c++/84978
2 // { dg-do compile }
4 struct S {
5   void (*fn)();
6   int a[10];
7 };
10 foo ()
12   S s;
13   s.fn ();
14   return s;