2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0134-2.cs
blob8a0492f5d1e97e7353652f6d78d0a923c2758737
1 // CS0134: A constant `o' of reference type `object' can only be initialized with null
2 // Line: 8
4 public class C
6 public static void Main ()
8 const object o = 1;