aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/incomplete2.C
blob: 30be26749c94aa7018560c51e90be878e572adb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/33501
// { dg-do compile }

class A;	// { dg-error "forward declaration" }

int f (A);			// { dg-error "initializing" }
const A &make ();

int
main ()
{
  return f (make ());	// { dg-error "invalid use of incomplete type" }
}