cs0179.cs 176 B

1234567891011121314
  1. // cs0179.cs: member can not be declared extern and have a body
  2. // Line:
  3. class X {
  4. public extern int extern_method ()
  5. {
  6. }
  7. public static void Main ()
  8. {
  9. }
  10. }