Commit a48df362 by Jakub Jelinek Committed by Jakub Jelinek

* g++.old-deja/g++.other/eh.C: New test.

From-SVN: r33928
parent f5a58395
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
......
// 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();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment