Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[mono.git] / mcs / errors / cs0134-2.cs
1 // CS0134: A constant `o' of reference type `object' can only be initialized with null
2 // Line: 8
3
4 public class C
5 {
6         public static void Main ()
7         {
8                 const object o = 1; 
9         }
10 }