New test.
[mono.git] / mcs / errors / cs0556.cs
1 // cs0556.cs : 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 }