Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0134.cs
1 // CS0134: A constant `C.o' of reference type `object' can only be initialized with null
2 // Line: 6
3
4 public class C
5 {
6     public const object o = "12345";
7 }