Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1660.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f549a9fce422690950d9802ff7794d238f381b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1660.cs: Cannot convert anonymous method block to type `object' because it is not a delegate type
// Line: 9

using System;

class X {
	static void Main ()
	{
		object o = delegate {};
	}
}