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

cs1526.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 582d451ea8903463e1e8814a024f102845a56eda (plain)
1
2
3
4
5
6
7
8
// cs1526: new expression requires () or [] after type
// Line: 6
class X {
        static void Main ()
	{
		X x = new X;
	}
}