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

gcs0131.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8998c2480f1057f1349a30031b0ba2f74b4f0273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0131: Left hand of an assignment must be a variable, a property or an indexer
// Line: 13
using System;
 
public class Foo<T>
{
}
 
class X
{
	static void Main ()
	{
		Foo<X> = new Foo<X> ();
	}
}