Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-583.cs
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 }