]> git.ipfire.org Git - thirdparty/vala.git/commitdiff
tests: remove unnecessary main argument from bug723195 test
authorEvan Nemerson <evan@coeus-group.com>
Wed, 29 Jan 2014 04:18:35 +0000 (20:18 -0800)
committerEvan Nemerson <evan@coeus-group.com>
Wed, 29 Jan 2014 04:18:35 +0000 (20:18 -0800)
tests/methods/bug723195.vala

index 1ea59904616dd0f0403383b737ebc145b6dab5d3..e0676cb2962dba0ae5153324e001911d9b6d4a20 100644 (file)
@@ -1,4 +1,4 @@
-private static int main (string[] args) {
+void main () {
        string[] a = { "foo", "bar", null, "baz" };
 
        a.length = 0;
@@ -20,6 +20,4 @@ private static int main (string[] args) {
        assert (string.joinv (":", a) == "foo:bar");
 
        assert (string.joinv (":", null) == "");
-
-       return 0;
 }