merged Sys.Web.Services 2.0 support in my branch:
[mono.git] / mcs / errors / cs0031-7.cs
1 // CS0031: Constant value `42' cannot be converted to a `string'\r
2 // Line: 5\r
3 \r
4 class A {\r
5   public static implicit operator string (A a) { return 42; }\r
6 }\r