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

UnusedInterfaceTypeOnTypeWithPreserveNothingIsRemoved.cs « LinkXml « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9da3534b8626e49a36e38498e09a4555edc5cc74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

namespace Mono.Linker.Tests.Cases.LinkXml
{
	[SetupLinkerDescriptorFile ("UnusedInterfaceTypeOnTypeWithPreserveNothingIsRemoved.xml")]
	public class UnusedInterfaceTypeOnTypeWithPreserveNothingIsRemoved
	{
		public static void Main ()
		{
		}

		interface IFoo
		{
		}

		[Kept]
		class Bar : IFoo
		{
		}
	}
}