51e8f10cf6
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
11 lines
139 B
C++
11 lines
139 B
C++
// PR 26790
|
|
// { dg-do compile }
|
|
|
|
struct A;
|
|
|
|
A foo() // { dg-error "incomplete" }
|
|
{
|
|
A a; // { dg-error "incomplete" }
|
|
return a;
|
|
}
|