re PR target/23589 (internal compiler error: in rest_of_handle_final, at toplev.c...
authorDanny Smith <dannysmith@users.sourceforge.net>
Tue, 18 Oct 2005 22:05:57 +0000 (22:05 +0000)
committerDanny Smith <dannysmith@gcc.gnu.org>
Tue, 18 Oct 2005 22:05:57 +0000 (22:05 +0000)
PR target/23589
* g++.dg/ext/dllimport11.C: New.

From-SVN: r105580

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/dllimport11.C [new file with mode: 0755]

index 6ba90568ccd76a146d674773801f51f44c8ce635..a79e36e1f8db72de0ab2effa5e59096bada0308f 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        PR c++/22293
diff --git a/gcc/testsuite/g++.dg/ext/dllimport11.C b/gcc/testsuite/g++.dg/ext/dllimport11.C
new file mode 100755 (executable)
index 0000000..369f96c
--- /dev/null
@@ -0,0 +1,15 @@
+// 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.