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
[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git]
/
mcs
/
errors
/
cs1501-13.cs
blob
620eb8dbfa5ee557a2d7d9990414ea53e43bd51d
1
// CS1501: No overload for method `Foo' takes `2' arguments
2
// Line: 13
3
4
static class
C
5
{
6
public static void
Foo
(
this string
s
,
int
d
,
bool
b
)
7
{
8
}
9
10
static void
Main
()
11
{
12
dynamic
d
=
null
;
13
"x"
.
Foo
(
d
);
14
}
15
}