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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0205-5.cs
blob
872eb9a537f580f2c5f97a25a7fcf400e7502a4d
1
// CS0205: Cannot call an abstract base member `A.this[int].set'
2
// Line: 13
3
4
public abstract class
A
5
{
6
public abstract int this
[
int
i
]
{ set; }
7
}
8
9
public class
B
:
A
10
{
11
public override int this
[
int
i
] {
12
set
{
13
base
[
i
] =
value
;
14
}
15
}
16
}