summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0101-2.cs
blob: 1f4b9179442c13cc81314d7ba45dcaf0fa3b35ae (plain)
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
		}
	}
}