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

VerifyAllReflectionAccessPatternsAreHandledAttribute.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: ae7debb02b5e49a0a1519f5c270417fb9a369549 (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, AllowMultiple = false, Inherited = false)]
	public class VerifyAllReflectionAccessPatternsAreValidatedAttribute : BaseExpectedLinkedBehaviorAttribute
	{
		public VerifyAllReflectionAccessPatternsAreValidatedAttribute ()
		{
		}
	}
}