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-6.cs
blob
6f67362e6cdf719c31f93e0403966cbe23f5e36e
1
// CS1501: No overload for method `Foo' takes `2' arguments
2
// Line: 17
3
4
5
static class
Extensions
6
{
7
public static string
Foo
(
this string
s
)
8
{
9
return
s
;
10
}
11
}
12
13
public class
M
14
{
15
public static void
Main
()
16
{
17
1
.
Foo
(
"foo"
);
18
}
19
}