repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0101-2.cs
blob
f0badfb16310e006ec76125fc18e298e4dedbc8b
1
// cs0101.cs: 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
}