From: Brian R. Gaeke Date: Sat, 6 Jul 2002 16:58:39 +0000 (+0000) Subject: * g++.dg/warn/incomplete1.C: New test. X-Git-Tag: releases/gcc-3.3.0~3927 X-Git-Url: https://gcc.gnu.org/git/?a=commitdiff_plain;h=71b089f0be9871e2493469f5cb47add3035fa8a5;p=gcc.git * g++.dg/warn/incomplete1.C: New test. From-SVN: r55289 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8ce200dd0e53..a18de7444151 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-07-06 Brian R. Gaeke , Alexandre Oliva + + * g++.dg/warn/incomplete1.C: New test. + 2002-07-05 Kaveh R. Ghazi PR c++/7099 diff --git a/gcc/testsuite/g++.dg/warn/incomplete1.C b/gcc/testsuite/g++.dg/warn/incomplete1.C new file mode 100644 index 000000000000..f4d074aa0854 --- /dev/null +++ b/gcc/testsuite/g++.dg/warn/incomplete1.C @@ -0,0 +1,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" "" { xfail *-*-* } } + return 0; +}