Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0102-2.cs
1 // CS0102: The type `SampleEnum' already contains a definition for `Label'
2 // Line: 6
3
4 public enum SampleEnum {
5         Label,
6         Label
7 }