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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1644-13.cs
blob
3b9390e35367636465595d902015b47ef86ff731
1
// CS1644: Feature `named argument' cannot be used because it is not part of the C# 3.0 language specification
2
// Line: 13
3
// Compiler options: -langversion:3
4
5
public class
C
6
{
7
static void
Foo
(
int
i
)
8
{
9
}
10
11
public static void
Main
()
12
{
13
Foo
(
i
:
3
);
14
}
15
}