X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/853c670e4b839fd435507201f04d16080590a894..c9d96fcfcf9b74099775a3a260eccdfdc31474c7:/src/test.gob diff --git a/src/test.gob b/src/test.gob index 17a8244..36fe62b 100644 --- a/src/test.gob +++ b/src/test.gob @@ -383,6 +383,18 @@ class Gtk:Weird:Button from Gtk:Button { public const gchar * const t17; public const gchar t18; + /* testing method with no arguments */ + public void method_with_no_arguments (void) + { + /* FOO */ + } + + /* testing calling the above method */ + public void foo (self) { + method_with_no_arguments (); + } + + /* testing empty statements */ ; ;