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

UnusedTypePreservedByLinkXmlIsKept.cs « LinkXml « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: edaff63ebc40da3f48d731e0a706d997b90f31ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Mono.Linker.Tests.Cases.Expectations.Assertions;

namespace Mono.Linker.Tests.Cases.LinkXml {
	class UnusedTypePreservedByLinkXmlIsKept {
		public static void Main ()
		{
		}
	}

	[Kept]
	[KeptMember (".ctor()")]
	class UnusedTypePreservedByLinkXmlIsKeptUnusedType {
	}
}