Files
linux-packaging-mono/mcs/errors/cs0134-2.cs

11 lines
175 B
C#
Raw Normal View History

// CS0134: A constant `o' of reference type `object' can only be initialized with null
// Line: 8
public class C
{
public static void Main ()
{
const object o = 1;
}
}