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