Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0283.cs
1 // CS0283: The type `S' cannot be declared const
2 // Line: 10
3
4 struct S
5 {
6 }
7
8 class C
9 {
10         const S s = new S();
11 }