cs0131.cs 138 B

12345678
  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. }