From: Jakub Jelinek Date: Mon, 21 Aug 2000 13:04:38 +0000 (+0200) Subject: * g++.old-deja/g++.other/loop2.C: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=029ccdb3329b1efda30811e9e4d60eb61b12fae6;p=gcc.git * g++.old-deja/g++.other/loop2.C: New test. From-SVN: r35839 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index d0c10da4456..0297b60fdd4 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,7 @@ 2000-08-21 Jakub Jelinek + * 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 00000000000..7fd90c714b6 --- /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; +}