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

BaseExpectedLinkedBehaviorAttribute.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: b7f7b9f794dd7154b43e32cd36045b70ab410516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Diagnostics;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	/// <summary>
	/// Base attribute for attributes that mark up the expected behavior of the linker on a member
	/// </summary>
	[Conditional ("INCLUDE_EXPECTATIONS")]
	public abstract class BaseExpectedLinkedBehaviorAttribute : Attribute
	{
	}
}