2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0555.cs
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
5 class Blah {
6
7         public static void Main () {}
8
9         public static implicit operator Blah (Blah i) {}
10
11 }