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

KeptExportedTypeAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8fcaaee126f76bc3e9b780059c49666ec1e50d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	/// <summary>
	/// Verifies that a module reference exists in the test case assembly
	/// </summary>
	[AttributeUsage (AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
	public class KeptExportedTypeAttribute : KeptAttribute
	{
		public KeptExportedTypeAttribute (Type type)
		{
			if (type is null)
				throw new ArgumentNullException (nameof (type));
		}
	}
}