summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1958.cs
blob: f9fda1fa73484c3b1de0a3f230014151589b5c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1958: Object and collection initializers cannot be used to instantiate a delegate 
// Line: 9
using System;

class Test
{
	public static void Main ()
	{
		var a = new Action (delegate { }) {
		};
	}
}