view gcc/testsuite/g++.dg/ext/dllimport10.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// 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;