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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0266-11.cs
blob
0910027a071c7e84a076d504d8fa76c2adc311ca
1
// cs0266: Cannot implicitly convert type `int' to `X.E'. An explicit conversion exists (are you missing a cast?)
2
// Line : 9
3
4
class
X
{
5
enum
E { }
6
7
static void
Main
()
8
{
9
const
E e
=
1
-
1
;
10
}
11
}
12
13
14