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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0205-3.cs
blob
63a9216c8223974df64dd190a3856d67952f15dc
1
// CS0205: Cannot call an abstract base member `A.Foobar.get'
2
// Line: 18
3
// Compiler options: -r:CS0205-3-lib.dll
4
5
using
System
;
6
7
public class
B
:
A1
8
{
9
protected override int
Foobar
{
10
get
{
11
return base
.
Foobar
;
12
}
13
}
14
15
static void
Main
()
16
{
17
B b
=
new
B
();
18
if
(
b
.
Foobar
==
1
) {
19
}
20
}
21
}
22