Files

12 lines
157 B
OpenEdge ABL
Raw Permalink Normal View History

%module conversion
%rename(toFoo) Bar::operator Foo();
%inline %{
struct Foo {
};
struct Bar {
operator Foo () { return Foo(); }
};
%}