2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0101-2.cs
blobf0badfb16310e006ec76125fc18e298e4dedbc8b
1 // cs0101.cs: The namespace `AA.VV' already contains a definition for `SomeEnum'
2 // Line: 10
3 using System;
5 namespace AA {
6 namespace VV {
7 public enum SomeEnum {
8 Something1,
9 Something2
12 public enum SomeEnum {
13 Dog,
14 Fish,
15 Cat