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-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
test-749-lib.cs
blob
176fc7e4db8388f076610b116eb103f6149680d5
1
// Compiler options: -target:library
2
3
public class
B
:
A
4
{
5
public override int
Prop
{
6
get
{ return 3; }
7
}
8
}
9
10
public class
A
11
{
12
public virtual int
Prop
{
13
get
{ return 1; }
14
set
{}
15
}
16
}