2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / tests / test-399.cs
index 480ab2801b5e739feb183c24d8d1ff15cc5ddd74..5a0adf0e893a38afcfe39f61210e48e27650a4c9 100644 (file)
@@ -4,6 +4,16 @@ using System;
 
 class TestVararg
 {
+       static void F (RuntimeArgumentHandle rah)
+       {
+       }
+       
+       static void G (__arglist)
+       {
+               F (new RuntimeArgumentHandle ());
+               F (__arglist);
+       }
+       
        static int Main ()
        {
                int result = Vararg.AddABunchOfInts (__arglist ( 2, 3, 4 ));