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(); }
};
}
%}