[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / ext / dllimport10.C
blob80833766163678d0f84bc57b9fc8f09a64d055ff
1 // PR c++/5287, c++/11021
2 // Inherit a virtual method from a dllimport'd base class.
4 // { dg-do compile { target i?86-*-cygwin* i?86-*-mingw* x86_64-*-mingw* } }
6 struct __attribute__((dllimport)) A
8   virtual void vfunc(void);
9 };
11 struct B : public A
16 B aB;