gcc/libmudflap/testsuite/libmudflap.c++/error2-frag.cxx
Volker Reichelt 51e8f10cf6 re PR c++/26789 (ICE on incomplete struct with -fmudflap)
PR mudflap/26789
	* testsuite/libmudflap.c++/error1-frag.cxx: New test.

	PR mudflap/26790
	* testsuite/libmudflap.c++/error2-frag.cxx: New test.

From-SVN: r113095
2006-04-19 21:47:03 +00:00

11 lines
139 B
C++

// PR 26790
// { dg-do compile }
struct A;
A foo() // { dg-error "incomplete" }
{
A a; // { dg-error "incomplete" }
return a;
}