diff options
Diffstat (limited to 'gcc/testsuite/g++.old-deja/g++.robertl/eb20.C')
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb20.C | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb20.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb20.C new file mode 100644 index 000000000..c15d4afcb --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.robertl/eb20.C @@ -0,0 +1,33 @@ +// { dg-do assemble } +// Error: ICE on 2.7.2.3 and EGCS 1.0.0. + +template<int N1, int N2> +struct meta_max { + enum { max = (N1 > N2) ? N1 : N2 }; +}; + +struct X { + enum { + a = 0, + n = 0 + }; +}; + +template<class T1, class T2, class T3> +struct Y { + + enum { + a = T1::a + T2::a + T3::a, + n = meta_max<meta_max<T1::n,T2::n>::max, T3::n>::max + }; +}; + +template<class T> +struct Z { + enum { + a = T::a, + n = T::n + }; +}; + +Z<Y<X,X,X> > z; |