aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/warn/incomplete1.C
blob: 389f8bd539e8862af4e893aac52787ab468b8e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { 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 `struct A'" "" }

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

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