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-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0031-2.cs
blob
c4e647ccae4baf130bbcb41bac7b3df926b24722
1
// cs0031-2.cs: Constant value `-1' cannot be converted to a `byte'
2
// Line: 9
3
4
public class
Test
5
{
6
public static void
Main
()
7
{
8
byte
b
= -
1
;
9
}
10
}