repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0266-11.cs
blob
5bdbd5610c68605365e24b8f4ed403b62ec58619
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