2008-02-19 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0134-2.cs
1 // cs0134.cs: `o': the constant of reference type other than string can only be initialized with null
2 // Line: 6
3
4 public class C
5 {
6         public static void Main ()\r
7         {\r
8                 const object o = 1; \r
9         }
10 }