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

class D
{
	void Foo ()
	{
		System.Threading.Tasks.TaskFactory m = null;
		m.StartNew (() => delegate { });
	}
}