* g++.old-deja/g++.other/eh.C: New test.
authorJakub Jelinek <jakub@redhat.com>
Tue, 16 May 2000 10:13:02 +0000 (12:13 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Tue, 16 May 2000 10:13:02 +0000 (12:13 +0200)
From-SVN: r33928

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

index 216623a..7cb198f 100644 (file)
@@ -1,3 +1,7 @@
+2000-05-15  Jakub Jelinek  <jakub@redhat.com>
+
+       * g++.old-deja/g++.other/eh.C: New test.
+
 2000-05-12  Richard Henderson  <rth@cygnus.com>
 
        * gcc.c-torture/execute/990208-1.c (main): Don't pass
diff --git a/gcc/testsuite/g++.old-deja/g++.other/eh.C b/gcc/testsuite/g++.old-deja/g++.other/eh.C
new file mode 100644 (file)
index 0000000..90294fa
--- /dev/null
@@ -0,0 +1,20 @@
+// Build don't link:
+
+class foo {
+public:
+    ~foo();
+    foo &operator=(const foo &);
+    foo        e() const;
+};
+class bar {
+public:
+    foo        d() const;
+};
+struct x {
+    foo a;
+    bar* b;
+};
+void baz(x *f, int ic)
+{
+    f->a = ic ? f->b->d().e() : f->b->d();
+}