2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / array2.C
blobedab15bbec2d59c97e0cff96633acfae0ff818ae
1 // { dg-do assemble  }
3 template<int N, class C>
4 class Bar {};
6 template<class C>
7 class Huh {};
9 template<int N>
10 void foo(const Bar<N,Huh<float[1]> > &x) {}
12 int main() {
13   foo(Bar<3,Huh<float[1]> >());