]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 1.0.0
[gob-dx.git] / src / test.gob
index d60393060d844f3ddc43716013561505cb2249b8..e31319b8ad9b8ee9a0b781b0f6d223c48b0a54ec 100644 (file)
@@ -41,9 +41,11 @@ void bubu(void);
 %}
 %header{
 /* this should be in the header, just under bubu prototype */
+#define TEST_ARRAY 5
 %}
 
 class Gtk:Weird:Button from Gtk:Button {
+       public int test_array[TEST_ARRAY];
        public int i;
        argument INT i set { self->i = ARG; } get { ARG = self->i; } ;