repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
test-493.cs
blob
b427f77f889b0ead2e10929c4778136aaff139bb
1
class
A
{
2
protected int
f { get { return 1; }
}
3
}
4
5
class
B
:
A
{
6
int
bar
()
{ return new C().f; }
7
}
8
9
class
C
:
B
{
10
static void
Main
() {}
11
}