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

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

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Delegate | AttributeTargets.Enum | AttributeTargets.Constructor | AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event, AllowMultiple = true, Inherited = false)]
	public class AddedPseudoAttributeAttribute : BaseExpectedLinkedBehaviorAttribute
	{
		public AddedPseudoAttributeAttribute (uint value)
		{
		}
	}
}