* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0102-2.cs
1 // cs0102-2.cs: The type `SampleEnum' already contains a definition for `Label'
2 // Line: 6
3
4 public enum SampleEnum {
5         Label,
6         Label
7 }