// CS0131: The left-hand side of an assignment must be a variable, a property or an indexer // Line: 13 using System; public class Foo { } class X { static void Main () { Foo = new Foo (); } }