X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/64034bc2613afefb289d1450411e69a0de4bce4e..8cb6370effd9f2dacc6dc9b662a43ea19ee637ac:/src/test.gob diff --git a/src/test.gob b/src/test.gob index bac330a..1c522a6 100644 --- a/src/test.gob +++ b/src/test.gob @@ -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); + } } %{