blob: 3bd8cf9f8180cffdd1eeab20de74ba33980d135a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* This interface file checks whether the SWIG parser handles static
array members of classes. Bug reported by Annalisa Terracina
<annalisa.terracina@datamat.it> on 2001-07-03.
*/
%module static_array_member
%inline %{
class RB {
static char *rberror[];
};
%}
|