summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/dllimport11.C
blob: 6d822be2292a275dffb60f2324c3301da0cf4313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PR target/23589
// Template member functions do not get dllimport status of class.
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw* x86_64-*-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.