summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0134.cs
blob: 70d06443fc0e0b195e5c881100969d0e284c088e (plain)
1
2
3
4
5
6
7
// CS0134: A constant `C.o' of reference type `object' can only be initialized with null
// Line: 6

public class C
{
    public const object o = "12345";
}