index
:
rust-bindgen.git
master
Unnamed repository; edit this file 'description' to name the repository.
Kent Overstreet
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
bindgen-tests
/
tests
/
headers
/
issue-1197-pure-virtual-stuff.hpp
blob: a0da90c9034727e80d3597d15eb06242be4e1570 (
plain
)
1
2
3
4
5
6
class
Foo
{
public
:
virtual
void
Bar
() =
0
;
virtual
~
Foo
() =
0
;
};