DEBSOURCES
Skip Quicknav
sources / mono / 4.6.2.7%2Bdfsg-1 / mcs / errors / cs0283-4.cs
12345678910
// CS0283: The type `int?' cannot be declared const // Line: 8 class C { void Test () { const int? ac = null; } }