[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0029-11.cs
1 // CS0029: Cannot implicitly convert type `int' to `string'
2 // Line: 5
3
4 class A {
5         public static implicit operator string (A a)
6         { 
7                 return 42;
8         }
9 }