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

test-671.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 87395cdeb3e6c33033b6d8b3c24a9d86763feca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

class C
{
	public static int Main ()
	{
		return Bar (null) ? 1 : 0;
	}

	static bool Bar (object t)
	{
		return t is object;
	}
}