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