1 // This is a crash test; we don't care how many normal errors we get.
2 // excess errors test - XFAIL *-*-*
9 void test<class BOX> (test_box *); // ERROR - illegal code
13 friend void test<class BOX> (test_box *); // ERROR - does not match
18 template <class BOX> void test(BOX *the_box) // ERROR - semicolon missing
23 template void test<> (test_box *);