aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/expr/return1.C
blob: 7a64988e4b32426252ccd9767807c75c62f7688c (plain)
1
2
3
4
5
6
7
8
9
// PR c++/18545

struct A;

A foo()  // { dg-error "" }
{
  A a; // { dg-error "" }
  return a;
}