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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1501-14.cs
blob
991088d8b1a01717d5ecc9caf989c6ca7ab2edf4
1
// CS1501: No overload for method `Foo' takes `0' arguments
2
// Line: 15
3
4
using
System
;
5
using
System
.
Runtime
.
InteropServices
;
6
7
public class
C
8
{
9
public static void
Foo
([
DefaultParameterValue
(
null
)]
string
s
)
10
{
11
}
12
13
public static void
Main
()
14
{
15
Foo
();
16
}
17
}