1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// CS0101: The namespace `AA.VV' already contains a definition for `SomeEnum' // Line: 10 using System; namespace AA { namespace VV { public enum SomeEnum { Something1, Something2 } public enum SomeEnum { Dog, Fish, Cat } } }