FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / partial2.C
blobcdf2199b012f216412245bffa7b55347e6b3cac4
1 // Build don't link:
2 // Tests partial specialization
3 template<class T> struct foo1 {};
4 template<class T, int n> struct foo1<T[n]>;
5 foo1<char> bar1;
6 foo1<char[10]> baz1; // ERROR - incomplete type
8 template<class T> struct foo2 {};
9 template<class T, unsigned n> struct foo2<T[n]>;
10 foo2<char> bar2;
11 foo2<char[10]> baz2; // ERROR - incomplete type
13 typedef unsigned int other1_t;
14 template<class T> struct foo3 {};
15 template<class T, other1_t n> struct foo3<T[n]>;
16 foo3<char> bar3;
17 foo3<char[10]> baz3; // ERROR - incomplete type - 
19 typedef int other2_t;
20 template<class T> struct foo4 {};
21 template<class T, other1_t n> struct foo4<T[n]>;
22 foo4<char> bar4;
23 foo4<char[10]> baz4; // ERROR - incomplete type -