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

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

class Test
{
	public static int Main ()
	{
		return checked (Method) (null) + unchecked (Method) (null);
	}
	
	static int Method (object o)
	{
		return 0;
	}
}