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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0205-4.cs
blob
16bbc46c77ffc2e0dcbae4997b1d4d7c0c3e361d
1
// CS0205: Cannot call an abstract base member `A.Foobar.set'
2
// Line: 13
3
4
public abstract class
A
5
{
6
public abstract int
Foobar { set; }
7
}
8
9
public class
B
:
A
10
{
11
public override int
Foobar
{
12
set
{
13
base
.
Foobar
=
value
;
14
}
15
}
16
}
17