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
/
CS0571-3-lib.cs
blob
c45119b0d73962830e90cb12b8fc60cc0c677e4f
1
// Testcase for bug #59980
2
3
namespace
Test
{
4
public abstract class
C0
{
5
public abstract int
foo { get; }
6
}
7
public abstract class
C1
:
C0
{
8
}
9
public class
C2
:
C1
{
10
public override int
foo { get { return 0; }
}
11
}
12
}