summaryrefslogtreecommitdiff
path: root/Examples/test-suite/prefix.i
blob: b0cb3120558d0227f72dc7da7e85a85175005022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test that was failing for PHP - the value of the -prefix option was
// ignored
%module prefix

%inline %{

class Foo {
public:
  Foo *get_self() {
    return this;
  }
};

%}