[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0134-5.cs
blobb7028a74e6c8e62a9a191ee6cf34f24a02f426e1
1 // CS0134: A constant `C.b' of reference type `object' can only be initialized with null
2 // Line: 6
4 class C
6 const object a = null, b = 1;