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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1742.cs
blob
57e3c9e30a1df3c2d25347906778f02c12d15be1
1
// CS1742: An element access expression cannot use named argument
2
// Line: 9
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
int
[]
o
=
new int
[
5
];
9
o
[
u
:
3
] =
9
;
10
}
11
}