mirror of https://github.com/swig/swig
test case fix
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12567 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
9b60e3b7bb
commit
a886b71a47
|
@ -13,9 +13,9 @@
|
|||
|
||||
class FooImplementation {
|
||||
public:
|
||||
int mingy() {}
|
||||
int constmingy() const {}
|
||||
static int thingy() {}
|
||||
int mingy() { return 0; }
|
||||
int constmingy() const { return 0; }
|
||||
static int thingy() { return 0; }
|
||||
static int svariable;
|
||||
static const int constsvariable;
|
||||
int normalvariable;
|
||||
|
|
Loading…
Reference in New Issue