copying the latest Sys.Web.Services from trunk.
[mono.git] / mcs / errors / cs0102-2.cs
1 // cs0102.cs: The class 'SampleEnum' already contains a definition for 'Label'
2 // Line: 6
3
4 public enum SampleEnum {
5         Label,
6         Label
7 }