diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.brendan/template26.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.brendan/template26.C | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/template26.C b/gcc/testsuite/g++.old-deja/g++.brendan/template26.C new file mode 100644 index 000000000..3f5de3d7a --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.brendan/template26.C @@ -0,0 +1,31 @@ +// { dg-do assemble } +// GROUPS passed templates +class V { + public: + V(); + V(int); + }; + +template <int I> class AA: public virtual V { + public: + AA(); + AA(int); + }; + +template <int I> class BB : public virtual V { + public: + BB(); + BB(int); + }; + +template <int I> AA<I>::AA() {} +template <int I> AA<I>::AA(int i): V(i) {} +template <int I> BB<I>::BB() {} +template <int I> BB<I>::BB(int i) {} + +class CC : public AA<1>, public BB<2> { + public: + CC(); + CC(int); + }; + |