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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
gtest-autoproperty-06.cs
blob
fc3cb244a725b6d39c36b900ba9d0bd5ebc00b42
1
class
A { }
2
class
B { }
3
4
interface
I
<
T
>
5
{
6
T Prop { get; set; }
7
}
8
9
class
C
:
I
<
A
>,
I
<
B
>
10
{
11
B I
<
B
>.
Prop { get; set; }
12
A I
<
A
>.
Prop { get; set; }
13
}
14
15
class
Program
16
{
17
public static void
Main
(
string
[]
args
)
18
{
19
C c
=
new
C
();
20
}
21
}