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
/
cs0221-4.cs
blob
ebe563056a28f666fa29784c5c039d8d85844a3a
1
// CS0221: Constant value `-10.1' cannot be converted to a `byte' (use `unchecked' syntax to override)
2
// Line: 6
3
4
class
T
{
5
static void
Main
() {
6
byte
d
= (
byte
)-
10.1
d
;
7
}
8
}