summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0201-11.cs
blob: 536ee2424fac25e91d22b9ffd70b8fbec1d0e354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
// Line: 10

using System;

class X
{
	public static void Main ()
	{
		new Func<int> (() => 0);
	}
}