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-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0031-3.cs
blob
d8a8557d50b1fb75213fc564539adcd2fd2b9355
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
}