git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@8037 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
272 B
OpenEdge ABL
12 lines
272 B
OpenEdge ABL
/* 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[];
|
|
};
|
|
%}
|