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
/
cs1742.cs
blob
53698a87146fe4a51ff617ad6570a8899a4f552d
1
// CS1742: An element access expression cannot use named argument
2
// Line: 9
3
// Compiler options: -langversion:future
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
int
[]
o
=
new int
[
5
];
10
o
[
u
:
3
] =
9
;
11
}
12
}