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

cs0187.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd9562abd703b47c2f02414b51c80086ba2a51ac (plain)
1
2
3
4
5
6
7
8
class X {
	static void Main ()
	{
		X x = new X();

		x++;
	}
}