summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0119-3.cs
blob: d70774df59a0c5f60c0f32fb68e3d6bcd07d2788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0119: Expression denotes a `variable', where a `method group' was expected
// Line: 11

using System;

class X
{
	static void Main ()
	{
		Delegate d = null;
		Console.WriteLine (d (null, null));
	}
}