From: Rico Tzschichholz Date: Wed, 24 Jan 2018 15:12:47 +0000 (+0100) Subject: tests: Add test for invalid variadic function X-Git-Tag: 0.39.6~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=570edd62396ad3958b9796ad53165805be9181f5;p=thirdparty%2Fvala.git tests: Add test for invalid variadic function https://bugzilla.gnome.org/show_bug.cgi?id=615450 --- diff --git a/tests/Makefile.am b/tests/Makefile.am index d92aae130..aba061229 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -78,6 +78,7 @@ TESTS = \ methods/bug598738.vala \ methods/bug599892.vala \ methods/bug613483.vala \ + methods/bug615450.test \ methods/bug620673.vala \ methods/bug622570.vala \ methods/bug626783.vala \ diff --git a/tests/methods/bug615450.test b/tests/methods/bug615450.test new file mode 100644 index 000000000..63ffa7ad6 --- /dev/null +++ b/tests/methods/bug615450.test @@ -0,0 +1,7 @@ +Invalid Code + +void foo (...) { +} + +void main () { +}