git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11434 626c5289-ae23-0410-ae9c-e8d60b6d4f22
14 lines
178 B
OpenEdge ABL
14 lines
178 B
OpenEdge ABL
// 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;
|
|
}
|
|
};
|
|
|
|
%}
|