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

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

using System;

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