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-03-15 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0031.cs
blob
1200f3f68baf5f6f56fa11604ef24f802ba3bf34
1
// cs0031.cs: Constant value `1022' cannot be converted to a `byte'
2
// Line: 9
3
4
public class
Test
5
{
6
public static void
Main
()
7
{
8
unchecked
{
9
byte
b
=
1024
-
2
;
10
}
11
}
12
}