* [Go] Fix argument names in inherited functions #795 This commit fixes a wrong argument name replacement in the inherited functions as well as a memory leak. * Add testcase for #795 * Move variable_replacement testcase into common * Move variable_replacement testcase into common
16 lines
231 B
OpenEdge ABL
16 lines
231 B
OpenEdge ABL
%module variable_replacement
|
|
|
|
%inline %{
|
|
|
|
class A {
|
|
public:
|
|
int a(int a1, int a2, int a3, int a4, int a5, int a6, int a7, int a8, int a9, int a10, int a11, int a12)
|
|
{
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
class B : public A {
|
|
};
|
|
|
|
%}
|