repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0266-16.cs
blob
5b031bb24a699e3708a4a817231e66635f1365e5
1
// CS0266: Cannot implicitly convert type `long' to `uint'. An explicit conversion exists (are you missing a cast?)
2
// Line: 9
3
4
class
S
5
{
6
uint
Test
(
uint
a
)
7
{
8
int
b
=
0
;
9
return
a
*
b
;
10
}
11
}