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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0031-3.cs
blob
2898597911ec6b0af4fb12fdb3d2bbccd5b92e96
1
// cs0031-3.cs: Constant value `-9' cannot be converted to a `uint'
2
// Line: 9
3
4
public class
Test
5
{
6
public static void
Main
()
7
{
8
uint
b
= -
9
;
9
}
10
}