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
/
cs1750-3.cs
blob
9673a74670b58321e6d296d53f3c0c57f72b34e7
1
// CS1750: Optional parameter expression of type `decimal' cannot be converted to parameter type `int?'
2
// Line: 6
3
4
public class
TS
5
{
6
public static void
Test
(
int
?
i
=
1
m
)
7
{
8
}
9
}