summaryrefslogtreecommitdiff
path: root/Examples/test-suite/operbool.i
blob: ee8c889e9b5453d15f3791412b6e69eb75b3f49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
%module operbool

%rename(operator_bool) operator bool();

%inline %{
  class Test {
  public:
    operator bool() {
      return false;
    }
  };
%}