diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.other/loop2.C | 31 |
2 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d0c10da..0297b60 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,7 @@ 2000-08-21 Jakub Jelinek <jakub@redhat.com> + * g++.old-deja/g++.other/loop2.C: New test. + * gcc.c-torture/compile/20000606-1.c: New test. * gcc.c-torture/compile/20000728-1.c: New test. * gcc.c-torture/execute/20000801-1.c: New test. diff --git a/gcc/testsuite/g++.old-deja/g++.other/loop2.C b/gcc/testsuite/g++.old-deja/g++.other/loop2.C new file mode 100644 index 0000000..7fd90c7 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/loop2.C @@ -0,0 +1,31 @@ +// Build don't link: +// Special g++ Options: -O + +class foo { +public: + operator const char*() const { return a; } + char *a; +}; + +class bar { +public: + ~bar(); + void operator++(int); + bool b() const; +protected: + void* c() const; +}; + +class baz : public bar { +public: + foo const &d() const { return *(foo *)bar::c(); } +}; + +extern int tst (const char *, const char *) throw(); + +void die(const foo& x) +{ + for (baz hi; hi.b(); hi++) + if (tst (hi.d(), x) == 0) + return; +} |