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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0031-7.cs
blob
7c37832f09d910eb42278603311b39b8f2851d97
1
// CS0031: Constant value `1000M' cannot be converted to a `byte'
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
const byte
c
=
unchecked
((
byte
)
1000
M
);
9
}
10
}
11