/trunk/Examples/test-suite/static_array_member.i
Swig | 12 lines | 6 code | 2 blank | 4 comment | 0 complexity | 77d551693bf87d4bb39fb46014799dd5 MD5 | raw file
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 %{ 9class RB { 10 static char *rberror[]; 11}; 12%}