summaryrefslogtreecommitdiff
path: root/mcs/tests/test-396.cs
blob: 1262608954da5868a2b4d27ef68a72408a0c445f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Compiler options: -r:test-396-lib.dll

public class MainClass
{
	public static int Main ()
	{
		A a = new A ();
		B b = new B ();
		bool r = (a == b);

                return 0;
	}
}