Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
conversion.i
blob: bad6c147a67be28692528b842e7eadbb0b4512b3 [
file
] [
log
] [
blame
]
%
module
conversion
%
rename
(
toFoo
)
Bar
::
operator
Foo
();
%
inline
%{
struct
Foo
{
};
struct
Bar
{
operator
Foo
()
{
return
Foo
();
}
};
%}