2005-06-24 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / errors / cs0131.cs
1 // cs0131.cs: The left-hand side of an assignment must be a variable, property or indexer
2 // Line:
3 class X {
4         void A ()
5         {
6                 5 = 4;
7         }
8 }