[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0673-2.cs
1 // CS0673: System.Void cannot be used from C#. Consider using `void'
2 // Line: 8
3
4 using System;
5
6 public class X
7 {
8         public static void Main()
9         {
10                 Void v;
11         }
12 }