[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0119-3.cs
1 // CS0119: Expression denotes a `variable', where a `method group' was expected
2 // Line: 11
3
4 using System;
5
6 class X
7 {
8         static void Main ()
9         {
10                 Delegate d = null;
11                 Console.WriteLine (d (null, null));
12         }
13 }