instantiate13.C: New test.
testsuite: * g++.old-deja/g++.pt/instantiate13.C: New test. From-SVN: r38904
This commit is contained in:
parent
96a1e32dcd
commit
79c9e15977
@ -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.
|
||||
|
25
gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
Normal file
25
gcc/testsuite/g++.old-deja/g++.pt/instantiate13.C
Normal 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;
|
Loading…
Reference in New Issue
Block a user