cs0555.cs 245 B

1234567891011
  1. // cs0555.cs : User-defined conversion cannot take an object of the enclosing type
  2. // and convert to an object of the enclosing type
  3. // Line : 8
  4. class Blah {
  5. public static void Main () {}
  6. public static implicit operator Blah (Blah i) {}
  7. }