Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0524-3.cs
1 // CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
2 // Line: 4
3
4 interface Interface {
5         enum E {
6             White,
7             Black
8         }
9 }