Commit 79c9e159 by Nathan Sidwell Committed by Nathan Sidwell

instantiate13.C: New test.

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

From-SVN: r38904
parent 96a1e32d
2001-01-11 Nathan Sidwell <nathan@codesourcery.com> 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. * g++.old-deja/g++.other/defarg7.C: New test.
* g++.old-deja/g++.other/defarg8.C: New test. * g++.old-deja/g++.other/defarg8.C: New test.
......
// 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;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment