* g++.old-deja/g++.eh/throw2.C: New test. CV-qualifiers are not
authoroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 15 Nov 1998 19:00:45 +0000 (19:00 +0000)
committeroliva <oliva@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 15 Nov 1998 19:00:45 +0000 (19:00 +0000)
  properly discarded.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@23666 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.eh/throw2.C [new file with mode: 0644]

index 7e29973..b3ce61f 100644 (file)
@@ -1,3 +1,8 @@
+1998-11-16  Alexandre Oliva  <oliva@dcc.unicamp.br>
+
+       * g++.old-deja/g++.eh/throw2.C: New test.  CV-qualifiers are not
+       properly discarded.
+
 1998-11-07  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
 
        * README: New file, general information about the testsuite and 
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/throw2.C b/gcc/testsuite/g++.old-deja/g++.eh/throw2.C
new file mode 100644 (file)
index 0000000..29b8932
--- /dev/null
@@ -0,0 +1,16 @@
+// Build don't link:
+
+// Submitted by Sebastian Ritterbusch <uabp@rz.uni-karlsruhe.de>
+
+#define ANY int // a class with a public constructor
+
+void athrow(const ANY & e) throw(ANY)
+{
+   throw e; // gets bogus error - discarding const - XFAIL *-*-*
+}
+
+int main(void)
+{
+   athrow(ANY());
+   return 0;
+}