Flush
[mono.git] / mcs / errors / cs0673.cs
1 //
2 // cs0673.cs: System.Void cannot be used from C# -- use typeof (void) to get the void type object.
3 // 
4
5 public class X
6 {
7         public static void Main()
8         {
9                 Type t = typeof (System.Void);
10         }
11 }