FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / template1.C
bloba0b63d830ad4515abb96b7a643ba932ded41b26c
1 // Build don't link:
3 // Copyright (C) 1999 Free Software Foundation
5 // by Alexandre Oliva <oliva@dcc.unicamp.br>
6 // based on bug report by Stefan Wetzel <Stefan_Wetzel@Physik.TU-Muenchen.DE>
8 // crash test - XFAIL *-*-*
10 template<int P = 0> struct foo {
11   static void bar(double (*)[dim]) {} // ERROR - dim not declared
14 void bar() {
15   foo<>::bar(0); // ERROR - instantiated from here