2003-04-29 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0131.cs
1 // cs0131.cs: left hand side of an assignment must be variable, property access or indexer
2 // Line:
3 class X {
4         void A ()
5         {
6                 5 = 4;
7         }
8 }