repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
ext
/
dllimport10.C
blob
c8aaf228a836a85a83543fb00d4a1ea0c4dced6f
1
// PR c++/5287, c++/11021
2
// Inherit a virtual method from a dllimport'd base class.
3
4
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
5
6
struct __attribute__((dllimport)) A
7
{
8
virtual void vfunc(void);
9
};
10
11
struct B : public A
12
{
13
};
14
15
16
B aB;