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
Merge pull request #1861 from saper/home-override
[mono-project.git]
/
mcs
/
tests
/
test-583.cs
blob
d1b3aa552f88213670731100a449700825817b33
1
class
Program
2
{
3
public static int
Main
()
4
{
5
IExtContainer e
=
null
;
6
ObjectContainerBase b
=
null
;
7
return
(
e
==
b
?
0
:
1
);
8
}
9
}
10
11
public interface
IContainer
12
{
13
}
14
15
public interface
IExtContainer
:
IContainer
16
{
17
}
18
19
public abstract class
ObjectContainerBase
:
IContainer
20
{
21
}