fix run-test
[mcs.git] / errors / cs0119-3.cs
blobd70774df59a0c5f60c0f32fb68e3d6bcd07d2788
1 // CS0119: Expression denotes a `variable', where a `method group' was expected
2 // Line: 11
4 using System;
6 class X
8 static void Main ()
10 Delegate d = null;
11 Console.WriteLine (d (null, null));