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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0221-4.cs
blob
607c8b606c32e52521c35786a33f62870266f3ae
1
// cs0221-4.cs: 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
}