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
More tests.
[mcs.git]
/
errors
/
cs0266-7.cs
blob
6f13790996e51efce50fadde2b9ca4d41d68e683
1
// cs0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2
// Line : 6
3
4
class
X
{
5
const uint
a
=
2
;
6
const int
b
= -
a
;
7
}
8
9
10