cs0126.cs 121 B

123456789
  1. // cs0126: an object of type `int' is expected in the return statement
  2. // Line: 7
  3. class X {
  4. int X ()
  5. {
  6. return;
  7. }
  8. }