Merge pull request #3686 from lambdageek/dev-format-printf
[mono.git] / mcs / errors / cs0134-5.cs
1 // CS0134: A constant `C.b' of reference type `object' can only be initialized with null
2 // Line: 6
3
4 class C
5 {
6         const object a = null, b = 1;
7 }