summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
blob: efbc937988babf1a0a517caace1dee22fc2d78dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do assemble  }

// Copyright (C) 2000 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 11 Jan 2001 <nathan@codesourcery.com>

// Bug 1551. We were accessing some uninitialized memory, causing us
// to reject this.

template <typename T>
struct base
{
base();
base(unsigned);
};

template <typename V>
struct Y
{
Y(unsigned = 0);
};

template <>
Y<char>::Y(unsigned) { }

base<double> x;