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

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

struct T {
}