2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0131.cs
blob80a891516768b698a77b3862dc37d31d65ec602f
1 // CS0131: The left-hand side 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> ();