Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[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 }