Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.pt / instantiate13.C
blobefbc937988babf1a0a517caace1dee22fc2d78dc
1 // { dg-do assemble  }
3 // Copyright (C) 2000 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 11 Jan 2001 <nathan@codesourcery.com>
6 // Bug 1551. We were accessing some uninitialized memory, causing us
7 // to reject this.
9 template <typename T>
10 struct base
12 base();
13 base(unsigned);
16 template <typename V>
17 struct Y
19 Y(unsigned = 0);
22 template <>
23 Y<char>::Y(unsigned) { }
25 base<double> x;