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

gtest-exmethod-26-lib.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06be7940a8fa89a36d58d067cba7589f11f07dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Compiler options: -target:library

using System;

namespace Test2
{
	static class Extensions {
		public static bool IsNullable (this Type self)
		{
			return true;
		}
	}
}