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: 47f0f34153b4d863581e3bc53e4ab929505da4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
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 {
	}
}