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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0266-10.cs
blob
cab2f62383fcd048e39a1e2722f4932134bab75e
1
// cs0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2
// Line: 7
3
4
public class
Test
5
{
6
const uint
a
=
2147483648
;
7
const int
b
= -
a
;
8
}