* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[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 }