Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
operbool.i
blob: ee8c889e9b5453d15f3791412b6e69eb75b3f49e [
file
] [
log
] [
blame
]
%
module
operbool
%
rename
(
operator_bool
)
operator
bool
();
%
inline
%{
class
Test
{
public
:
operator
bool
()
{
return
false
;
}
};
%}