Normalize line endings.
[mono.git] / mcs / errors / gcs0131.cs
1 // CS0131: The left-hand side of an assignment must be a variable, a property or an indexer
2 // Line: 13
3 using System;
4  
5 public class Foo<T>
6 {
7 }
8  
9 class X
10 {
11         static void Main ()
12         {
13                 Foo<X> = new Foo<X> ();
14         }
15 }