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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1739-2.cs
blob
dc77a5ed7f1aa7500826fe3bd740c10ac4da6c23
1
// CS1739: The best overloaded method match for `A.this[int]' does not contain a parameter named `value'
2
// Line: 17
3
4
class
A
5
{
6
public int this
[
int
id
] {
7
set
{
8
}
9
}
10
}
11
12
class
B
13
{
14
public static void
Main
()
15
{
16
A a
=
new
A
();
17
a
[
value
:
1
] =
9
;
18
}
19
}