summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/dllimport10.C
blob: 80833766163678d0f84bc57b9fc8f09a64d055ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/5287, c++/11021
// Inherit a virtual method from a dllimport'd base class.

// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw* x86_64-*-mingw* } }

struct __attribute__((dllimport)) A
{
  virtual void vfunc(void);
};

struct B : public A
{
};


B aB;