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

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

struct S<T> where T : struct
{
	static object Box (T? o)
	{
		if (o == null)
			return null;
		return (T) o;
	}
}

class C
{
	public static void Main ()
	{
	}
}