[w32file] Remove dead code
[mono.git] / mcs / errors / cs0556.cs
1 // CS0556: User-defined conversion must convert to or from the enclosing type
2 // Line: 8
3
4 class Blah {
5
6         public static void Main () {}
7         
8         public static implicit operator int (int i) {}
9
10 }