summaryrefslogtreecommitdiff
path: root/mcs/tests/test-583.cs
blob: d1b3aa552f88213670731100a449700825817b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class Program
{
	public static int Main ()
	{
		IExtContainer e = null;
		ObjectContainerBase b = null;
		return (e == b ? 0 : 1);
	}
}

public interface IContainer
{
}

public interface IExtContainer : IContainer
{
}

public abstract class ObjectContainerBase : IContainer
{
}