Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0134.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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";
}