eol
[mcs.git] / tests / test-583.cs
blob44a2494190239c7f35b493bdf41e69fbc68d7e3b
1 class Program
3 static int Main ()
5 IExtContainer e = null;
6 ObjectContainerBase b = null;
7 return (e == b ? 0 : 1);
11 public interface IContainer
15 public interface IExtContainer : IContainer
19 public abstract class ObjectContainerBase : IContainer