[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1547-12.cs
1 // CS1547: Keyword `void' cannot be used in this context
2 // Line: 8
3
4
5 class X
6 {
7         static void Main ()
8         {
9                 var e = from void v in new int [] { 0 } select i;
10         }
11 }