]> git.draconx.ca Git - gob-dx.git/blobdiff - src/test.gob
Release 0.90.2
[gob-dx.git] / src / test.gob
index bac330a3e47a4ea53a0a9e1c6c4377aedff2e2d1..1c522a6f4e2a9d0f462d51be80439ec2698a92e0 100644 (file)
@@ -53,6 +53,24 @@ class Gtk:Weird:Button from Gtk:Button {
        {
                return 25;
        }
+       signal private first NONE (NONE)
+       void googlegoogle(self)
+       {
+               puts("TEST1");
+               googlegoogle2(self);
+       }
+       signal first private NONE (NONE)
+       void googlegoogle2(self)
+       {
+               puts("TEST2");
+               testprivvirtual(self);
+       }
+       virtual private
+       void testprivvirtual(self)
+       {
+               puts("TEST3");
+               googlegoogle(self);
+       }
 }
 
 %{