aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBrian R. Gaeke <brg@dgate.ORG>2002-07-06 16:58:39 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2002-07-06 16:58:39 +0000
commit71b089f0be9871e2493469f5cb47add3035fa8a5 (patch)
tree735937ca634ce40ec600c5c6fdedc5769e5c80ac /gcc
parentacc0131c148d0580b348a18d2294e38bbc694796 (diff)
downloadgcc-71b089f0be9871e2493469f5cb47add3035fa8a5.zip
gcc-71b089f0be9871e2493469f5cb47add3035fa8a5.tar.gz
gcc-71b089f0be9871e2493469f5cb47add3035fa8a5.tar.bz2
* g++.dg/warn/incomplete1.C: New test.
From-SVN: r55289
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/g++.dg/warn/incomplete1.C21
2 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 8ce200d..a18de74 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2002-07-06 Brian R. Gaeke <brg@dgate.ORG>, Alexandre Oliva <aoliva@redhat.com>
+
+ * g++.dg/warn/incomplete1.C: New test.
+
2002-07-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
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 0000000..f4d074a
--- /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;
+}