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
Take stars out of types where they make more sense.
[mono-project.git]
/
mcs
/
tests
/
test-891.cs
blob
c6b51401e06976e941fab388ffc6612ac4497cfb
1
interface
I
2
{
3
int
P { get; }
4
}
5
6
class
B
:
I
7
{
8
int
I
.
P { get { return 1; }
}
9
}
10
11
class
C
:
B
12
{
13
public int
get_P
()
14
{
15
return
1
;
16
}
17
18
public static void
Main
()
19
{
20
}
21
}