mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-18 14:30:42 +08:00
re PR c++/13744 (ICE when using implicit copy constructor for struct defined in template function)
PR c++/13744 * g++.dg/inherit/local3.C: New test. From-SVN: r98082
This commit is contained in:
parent
367e831921
commit
5782c29da3
@ -1,3 +1,8 @@
|
||||
2005-04-13 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
|
||||
|
||||
PR c++/13744
|
||||
* g++.dg/inherit/local3.C: New test.
|
||||
|
||||
2005-04-12 Jeff Law <law@redhat.com>
|
||||
|
||||
* gcc.dg/tree-ssa/20050412-1.c: New test.
|
||||
|
14
gcc/testsuite/g++.dg/inherit/local3.C
Normal file
14
gcc/testsuite/g++.dg/inherit/local3.C
Normal file
@ -0,0 +1,14 @@
|
||||
// PR c++/13744 (ice-on-valid-code)
|
||||
// Origin: Thom Harp <thomharp@charter.net>
|
||||
|
||||
// { dg-do compile }
|
||||
|
||||
template<int> void foo()
|
||||
{
|
||||
struct A
|
||||
{
|
||||
virtual void bar() { A a(*this); }
|
||||
} a;
|
||||
}
|
||||
|
||||
template void foo<0>();
|
Loading…
x
Reference in New Issue
Block a user