New test.
[mono.git] / mcs / errors / cs0134.cs
1 // cs0134.cs: `C.o': the constant of reference type other than string can only be initialized with null
2 // Line: 6
3
4 public class C
5 {
6     public const object o = "12345";
7 }