]> git.ipfire.org Git - thirdparty/gcc.git/blame - libmudflap/testsuite/libmudflap.c++/pass66-frag.cxx
Daily bump.
[thirdparty/gcc.git] / libmudflap / testsuite / libmudflap.c++ / pass66-frag.cxx
CommitLineData
2d188530
JJ
1// PR c++/37568
2// { dg-do compile }
3// { dg-options "-fmudflap -O" }
4
5struct A
6{
7 int i;
8};
9
10A
11foo ()
12{
13 A a = { 1 };
14 return a;
15}
16
17A a = foo ();