diff options
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.pt/spec17.C')
-rwxr-xr-x | gcc_arm/testsuite/g++.old-deja/g++.pt/spec17.C | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.pt/spec17.C b/gcc_arm/testsuite/g++.old-deja/g++.pt/spec17.C new file mode 100755 index 0000000..3e3dd63 --- /dev/null +++ b/gcc_arm/testsuite/g++.old-deja/g++.pt/spec17.C @@ -0,0 +1,44 @@ +// Build don't link: + +template<class T> +struct Foo { }; + +template<class T1, class T2> +struct BT { }; + +template<class T1, class T2> +struct BT< Foo<T1>, Foo<T2> > { static const int i = 1; }; + +template<class T1, class T2> +struct BT< T1, Foo<T2> > { static const int i = 2; }; + +template<class T1, class T2> +struct BT< Foo<T1>, T2 > { static const int i = 3; }; + +template<class T1, class T2> +int foo(Foo<T1>, Foo<T2>) +{ + return 1; +} + +template<class T1, class T2> +int foo(T1, Foo<T2>) +{ + return 2; +} + +template<class T1, class T2> +int foo(Foo<T1>, T2) +{ + return 3; +} + +void f() +{ + BT< double, Foo<int> >::i; + BT< Foo<int>, Foo<int> >::i; + BT< Foo<int>, float >::i; + foo(1.0, Foo<int>()); + foo(Foo<int>(), Foo<int>()); + foo(Foo<int>(), 1.0); +} |