**** Merged from MCS ****
[mono-project.git] / mcs / errors / gcs0131.cs
blob8998c2480f1057f1349a30031b0ba2f74b4f0273
1 // CS0131: Left hand of an assignment must be a variable, a property or an indexer
2 // Line: 13
3 using System;
5 public class Foo<T>
9 class X
11 static void Main ()
13 Foo<X> = new Foo<X> ();