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
/
cs1501-9.cs
blob
f19f56069732a9cc255051d7ef2b21777a8ce99d
1
// CS1501: No overload for method `Test' takes `2' arguments
2
// Line: 16
3
4
static class
S
5
{
6
public static int
Test
(
this int value
)
7
{
8
return value
;
9
}
10
}
11
12
class
M
13
{
14
public static void
Main
()
15
{
16
1
.
Test
(
value
:
1
);
17
}
18
}