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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0076.cs
blob
2b80471763ab7373af560c70e257a79ece2bd829
1
// cs0076.cs: An item in an enumeration cannot have an identifier `value__'
2
// Line: 8
3
4
using
System
;
5
6
class
ErrorCS0076
{
7
enum
Foo
{
8
value__
=
0
9
}
10
public static void
Main
() {
11
}
12
}
13