Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1502-11.cs
1 // CS1502: The best overloaded method match for `string.String(char*)' has some invalid arguments
2 // Line: 8
3
4 class C
5 {
6         static string Prop {
7                 get {
8                         return new string ("s");
9                 }
10     }
11 }