xref
: /
third_party
/
rust
/
crates
/
bindgen
/
bindgen-tests
/
tests
/
headers
/
virtual_overloaded.hpp
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
1
class
C {
2
public
:
3
virtual
void
do_thing
(
char
);
4
virtual
void
do_thing
(
int
);
5
};
6