aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/incomplete1.C
blob: 9dc645d82f9d132c063a13dce15b70bef5c3564b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// { dg-do compile }

// Contributed by Brian Gaeke; public domain.

// 5 If the object being deleted has incomplete class type at the
// point of deletion and the complete class has a non-trivial
// destructor or a deallocation function, the behavior is undefined.

// (But the deletion does not constitute an ill-formed program. So the
// program should nevertheless compile, but it should give a warning.)

class A;	// { dg-warning "forward declaration of 'class A'" "" }

A *a;		// { dg-warning "'a' has incomplete type" "" }

int
main (int argc, char **argv)
{
  delete a;	// { dg-warning "delete" "warn" }
  // { dg-message "note" "note" { target *-*-* } 19 }
  return 0;
}