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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0117-4.cs
blob
5dd7149c0ed432125f0dc58999c30c1973aa9972
1
// CS0117: `System.Runtime.CompilerServices.IndexerNameAttribute' does not contain a definition for `errorarg'
2
// Line:
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
public class
E
7
{
8
[
IndexerName
(
"xxx"
,
errorarg
=
""
)]
9
public int this
[
int
index
] {
10
get
{
11
return
0
;
12
}
13
}
14
}