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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0205-5.cs
blob
82d787a6413f906d3a95f6d1d2bd7edf7f4cdb5f
1
// CS0205: Cannot call an abstract base member `A.this[int]'
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
}
17