cs0133.cs 131 B

12345678
  1. // cs0133.cs: the expression being assigned to `x' must be constant
  2. // Line: 6
  3. class X {
  4. X (int arg)
  5. {
  6. const int x = arg;
  7. }
  8. }