FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb125.C
blobaff6ae610074a3c481770444c29c46ad75b78c72
1 // This is a crash test; we don't care how many normal errors we get.
2 // excess errors test - XFAIL *-*-*
4 struct test_box
5     {
6      void print(void);
7     };
9 void test<class BOX> (test_box *);   // ERROR - illegal code
11 class test_square
12     {
13       friend void test<class BOX> (test_box *); // ERROR - does not match
14     }
18 template <class BOX> void test(BOX *the_box)  // ERROR - semicolon missing
19     {
20     the_box->print();
21     };
23 template void test<> (test_box *);