[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1688.cs
1 // CS1688: Cannot convert anonymous method block without a parameter list to delegate type `C.WithOutParam' because it has one or more `out' parameters
2 // Line: 10
3
4 class C
5 {
6         delegate void WithOutParam (out string value);
7
8     static void Main() 
9     {
10         WithOutParam o = delegate
11                         { 
12                                 return;
13                         };
14     }
15 }