instantiate13.C: New test.

testsuite:
	* g++.old-deja/g++.pt/instantiate13.C: New test.

From-SVN: r38904
This commit is contained in:
Nathan Sidwell 2001-01-11 12:50:28 +00:00 committed by Nathan Sidwell
parent 96a1e32dcd
commit 79c9e15977
2 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-01-11 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/instantiate13.C: New test.
2001-01-11 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.other/defarg7.C: New test.

View File

@ -0,0 +1,25 @@
// Build don't link:
// 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;