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
/
cs0110-2.cs
blob
cb069f15e7d78798f9c58245fe282ffb8dba012a
1
// cs0110.cs: The evaluation of the constant value for `E.a' involves a circular definition
2
// Line: 6
3
4
enum
E
5
{
6
a
=
b
,
7
b
=
c
,
8
c
=
a
9
}