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

LinkerAttributeRemovalEmbeddedAndLazyLoad.cs « Dependencies « LinkAttributes « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2562a811d2819ddeca913bac8fb0abb823d9600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;

namespace Mono.Linker.Tests.Cases.LinkAttributes.Dependencies
{
	[EmbeddedAttributeToBeRemoved]
	public class TypeWithEmbeddedAttributeToBeRemoved
	{
		public TypeWithEmbeddedAttributeToBeRemoved () { }
	}

	public class EmbeddedAttributeToBeRemoved : Attribute
	{
		public EmbeddedAttributeToBeRemoved () { }
	}
}