blob: 3d27be0b7f3cd11b863f65ce2a2eb288fd22f492 [file] [log] [blame]
%module arrays_scope
%inline %{
enum { ASIZE = 256 };
namespace foo {
enum { BSIZE = 512 };
class Bar {
public:
enum { CCSIZE = 768 };
int adata[ASIZE];
int bdata[BSIZE];
int cdata[CCSIZE];
void blah(int x[ASIZE], int y[BSIZE], int z[CCSIZE]) { };
};
}
%}