Commit 7edfc016 by Danny Smith Committed by Danny Smith

re PR target/23589 (internal compiler error: in rest_of_handle_final, at toplev.c:2067)

	PR target/23589
	* g++.dg/ext/dllimport11.C: New.

From-SVN: r105580
parent f4df3ce5
2005-10-18 Danny Smith <dannysmith@users.sourceforge.net>
PR target/23589
* g++.dg/ext/dllimport11.C: New.
2005-10-18 Volker Reichelt <reichelt@igpm.rwth-aachen.de> 2005-10-18 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c++/22293 PR c++/22293
// PR target/23589
// Template member functions do not get dllimport status of class.
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
struct __attribute__((dllimport)) Foo
{
template <class T> Foo (T);
};
void a (int i)
{
Foo f(i);
}
template <class T> Foo::Foo (T) {} // no dllimport warnings on definition.
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