repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Warnings cleanup
[mcs.git]
/
errors
/
gcs1501-4.cs
blob
f64a51f6bc37dc1e80fbaadac11915eff2f1d53d
1
// CS1501: No overload for method `Test' takes `2' arguments
2
// Line: 16
3
// Compiler options: -langversion:future
4
5
static class
S
6
{
7
public static int
Test
(
this int value
)
8
{
9
return value
;
10
}
11
}
12
13
class
M
14
{
15
public static void
Main
()
16
{
17
1
.
Test
(
value
:
1
);
18
}
19
}