blob: 793c0174e7705470dbab703eb9f86cfb217b81bf [file] [log] [blame]
%module operbool
%rename(operbool) operator bool();
%inline %{
class Test {
public:
operator bool() {
return false;
}
};
%}