Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0555.cs
1 // CS0555: User-defined operator cannot take an object of the enclosing type and convert to an object of the enclosing type
2 // Line : 8
3
4 class Blah {
5
6         public static void Main () {}
7
8         public static implicit operator Blah (Blah i) {}
9
10 }