Removing empty errors tests - tests that are valid C/C++ code

This commit is contained in:
William S Fulton 2016-06-01 20:59:19 +01:00
commit e64998d55c
6 changed files with 0 additions and 25 deletions

View file

@ -1,3 +0,0 @@
%module xxx
int foo(int x, ...);

View file

@ -1,15 +0,0 @@
%module xxx
int foo(int x);
int foo(double x);
class Foo {
public:
int bar(int);
int bar(double);
};
class Spam {
public:
Spam();
Spam(int);
};

View file

@ -1,7 +0,0 @@
%module xxx
class foo {
static const int BAR = 42;
public:
int blah(int x = BAR);
};