X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ftests%2Ftest-269.cs;h=2720cbb8fc8c844f4c386683c64b3379e6a4956d;hb=edbc5c2334e10836479d1cc528c68d4ad5b47440;hp=8737ef80b8df0ce1d43557375ef6e6eb6f0e91cb;hpb=b5cfba1835f2ba823796f825410e0062b7e4c9a3;p=mono.git diff --git a/mcs/tests/test-269.cs b/mcs/tests/test-269.cs index 8737ef80b8d..2720cbb8fc8 100644 --- a/mcs/tests/test-269.cs +++ b/mcs/tests/test-269.cs @@ -135,7 +135,7 @@ class Class1 return new Result (result); } - static int Main (string[] args) + public static int Main (string[] args) { int result = AddABunchOfInts (__arglist ( 2, 3, 4 )); Console.WriteLine ("Answer: {0}", result); @@ -187,6 +187,10 @@ class Class1 if (result != 21) return 8; + result = s.InstAddABunchOfInts (__arglist ( )); + if (result != 0) + return 9; + return 0; } }