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

%rename(operbool) operator bool();

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