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
Don't use .Xo/.Xc. Fix date format.
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
rtld
/
testlib
/
virt.cc
blob
b9a326e1d715ec320eae28e0a62dcdde39781b0d
1
// $NetBSD$
2
3
// g++ generates a reference to "__pure_virtual" with this code
4
5
class
mist
{
6
public
:
7
virtual
void
vv
(
void
) =
0
;
8
};
9
10
class
mast
:
public
mist
{
11
public
:
12
void
vv
(
void
) {};
13
};
14
15
static
mast virt
;