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: eb17984ba348e3f6945978cff742d6efb9809bda (plain)
1
2
3
4
5
6
7
8
using System;

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