summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net31.C
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/g++.old-deja/g++.mike/net31.C
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.mike/net31.C')
-rw-r--r--gcc/testsuite/g++.old-deja/g++.mike/net31.C68
1 files changed, 68 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.mike/net31.C b/gcc/testsuite/g++.old-deja/g++.mike/net31.C
new file mode 100644
index 000000000..8bc159b13
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.mike/net31.C
@@ -0,0 +1,68 @@
+// { dg-do assemble }
+
+class foo_a {
+ protected:
+ double func(int xi) {return 0.0;}
+ public:
+ foo_a() {}
+};
+
+class foo_b {
+ public:
+ foo_b(int);
+ foo_b();
+ ~foo_b();
+ foo_b(const foo_b&);
+ double& operator()(int);
+ foo_b& operator=(foo_b&);
+ void bar_a(int);
+};
+
+foo_b& operator*(foo_b&, foo_b&);
+foo_b& operator*(double, foo_b&);
+
+template <class TP>
+class foo_c {
+ typedef double (TP::* Tmatf)(int);
+ int m;
+ Tmatf* a;
+ void foo_cinst (int mm);
+ public:
+ foo_c(int mm);
+ foo_c() {m = 0; a = 0;}
+ ~foo_c() {delete a;}
+ double (TP::*& operator()(int i))(int) {return a[i];}
+ foo_b& bug_func(int);
+};
+
+template <class TP>
+foo_b& foo_c<TP>::bug_func(int x) {
+ static foo_b retval(m);
+ retval.bar_a(m);
+ for (register int i = 0; i < m; i++)
+ retval(i) = (*(operator()(i)))(x); // { dg-error "invalid use of unary '\\\*'" }
+ return retval;
+}
+
+template <class TP>
+class foo_d {
+ protected:
+ foo_c<TP> bar_b;
+ public:
+ foo_d() {}
+ virtual ~foo_d() {}
+ virtual void setfoo_c();
+};
+
+class foo_e : public foo_a, public foo_d<foo_a> {
+ public:
+ foo_e();
+ ~foo_e() {}
+ void setfoo_c();
+};
+
+void foo_e::setfoo_c() {
+ bar_b(0) = func; // { dg-error "" }
+}
+
+template class foo_c<foo_a>;