Rebase.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / instantiate8.C
blobba3b7479b2e7bcf96b983e17fe2b03d6f1635eed
1 // { dg-do assemble  }
2 // Copyright (C) 2000, 2002 Free Software Foundation, Inc.
3 // Contributed by Nathan Sidwell 14 Nov 2000 <nathan@codesourcery.com>
5 // bug 616. We failed to complete the type of decls in templates, leading to
6 // bogus errors.
8 struct Z;
9 struct Y
11   Y (int i = 1);
13 void g ()
15   const Y y;
16   Z z;          // { dg-error "" } incomplete
19 template <int dim>
20 struct X
22   X (int i=1);
25 void h ()
27   const X<2> z;
28   Z z1;         // { dg-error "" } incomplete
31 template <int dim>
32 void f()
34   const X<dim> x;
35   const X<dim+1> y[3];
36   Z z2;           // { dg-error "" } incomplete
37   typedef Z z3;   // ok
40 template void f<3> ();