cs0132.cs 110 B

1234567
  1. // cs0132.cs: A static parameter must not have any parameters
  2. // Line: 4
  3. class X {
  4. static X (int x)
  5. {
  6. }
  7. }