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

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