Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-583.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
{
}