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-440.cs
blob
4b971b6eee911f0c72a4a117386298c4c5b09a2c
1
public interface
I
<
X
>
2
{
3
}
4
5
public abstract class
AnyObjectId
:
I
<
ObjectId
>
6
{
7
public int
W1 { get; set; }
8
}
9
10
public class
ObjectId
:
AnyObjectId
11
{
12
ObjectId
()
13
{
14
W1
=
1
;
15
}
16
17
public static void
Main
()
18
{
19
}
20
}