1 2 3 4 5 6 7 8 9 10
// 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; } }