diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 6ba90568ccd..a79e36e1f8d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-10-18 Danny Smith + + PR target/23589 + * g++.dg/ext/dllimport11.C: New. + 2005-10-18 Volker Reichelt 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 index 00000000000..369f96c66ea --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/dllimport11.C @@ -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 Foo (T); +}; + +void a (int i) +{ + Foo f(i); +} + +template Foo::Foo (T) {} // no dllimport warnings on definition.