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:
William S Fulton 2011-03-29 22:21:08 +00:00
parent 9b60e3b7bb
commit a886b71a47
1 changed files with 3 additions and 3 deletions

View File

@ -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;