2009-09-01 Rodrigo Kumpera <rkumpera@novell.com>
[mono.git] / mono / tests / metadata-verifier / assembly-with-signatures.cs
1 using System;
2 using System.Runtime.InteropServices;
3 using System.Runtime.CompilerServices;
4
5 public static class Driver
6 {
7         public static void Test ()
8         {
9                 Console.WriteLine ("x",1,2,3,4,__arglist (1,2,3));
10                 "ff".Substring (1,1);
11         }
12
13         public static void Main()//keep it as last method in the file
14         {
15         }
16 }
17
18