Updated with review feedback.
[mono.git] / mcs / errors / cs0101-2.cs
1 // CS0101: The namespace `AA.VV' already contains a definition for `SomeEnum'
2 // Line: 10
3 using System;
4
5 namespace AA {
6         namespace VV {
7                 public enum SomeEnum {
8                         Something1,
9                         Something2
10                 }
11
12                 public enum SomeEnum {
13                         Dog,
14                         Fish,
15                         Cat
16                 }
17         }
18 }