summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0118-15.cs
blob: 02efe523eeff74764de5bf9609dce761c9623eb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0118: `Foo<X>' is a `type' but a `variable' was expected
// Line: 12
 
public class Foo<T>
{
}
 
class X
{
	static void Main ()
	{
		Foo<X> = new Foo<X> ();
	}
}