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

RemovedPseudoAttributeAttribute.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: 3a95bfa0d3e41cbea112677ec4df680060a20e92 (plain)
1
2
3
4
5
6
7
8
9
using System;

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