aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/eh/ctor3.C18
2 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 046c528..7d62fc4 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2004-12-21 Andrew Pinski <pinskia@physics.uc.edu>
+
+ PR C++/18984
+ * g++.dg/eh/ctor3.C: New test.
+
2004-12-21 Eric Botcazou <ebotcazou@libertysurf.fr>
* objc.dg/stabs-1.m: Allow section name to be quoted and
diff --git a/gcc/testsuite/g++.dg/eh/ctor3.C b/gcc/testsuite/g++.dg/eh/ctor3.C
new file mode 100644
index 0000000..378c07e
--- /dev/null
+++ b/gcc/testsuite/g++.dg/eh/ctor3.C
@@ -0,0 +1,18 @@
+// PR C++/18984
+// We just to ICE as we did not add a
+// deference to invisible by reference
+// variable
+
+// { dg-do compile }
+
+
+struct Str
+{
+ Str(const char *chars);
+ Str& operator=(const char *chars);
+ virtual operator char*() const;
+};
+Str _localName(Str fullname)
+{
+ return (char*)fullname;
+}