/trunk/Examples/test-suite/static_array_member.i
# · Swig · 12 lines · 6 code · 2 blank · 4 comment · 0 complexity · 77d551693bf87d4bb39fb46014799dd5 MD5 · raw file
- /* 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[];
- };
- %}