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
2010-04-13 Sebastien Pouliot <sebastien@ximian.com>
[mono-project.git]
/
mcs
/
tests
/
test-752-lib.cs
blob
2d7196858b4b8ecfa1ca20ae9026ba85c076b597
1
// Compiler options: -target:library
2
3
public abstract class
A
4
{
5
public abstract bool
IsNode { get; }
6
}
7
8
public abstract class
B
:
A
9
{
10
public override sealed bool
IsNode { get { return true; }
}
11
}