Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust-bindgen
/
e23f0a7ad6fe7a394cd83f92979eb5871a040052
/
.
/
bindgen-tests
/
tests
/
headers
/
operator_equals.hpp
blob: 38a3a092a9cfb3d0c1403f0a99803ac2a5c12684 [
file
] [
log
] [
blame
]
// bindgen-flags: --represent-cxx-operators --generate-inline-functions -- -x c++
// bindgen-parse-callbacks: operator-rename
class
SomeClass
{
public
:
bool
operator
=(
const
SomeClass
&
another
)
{
return
false
;
}
};