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

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