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

cs0019-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b8da99ef80ef915ffddaf969aa658d293f8377d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class X {
}

class Y {
}

class T {
	static void Main ()
	{
		X x = new X ();
		Y y = new Y ();

		if (x == y){
		}
	}
}