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

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

namespace Mono.Linker.Tests.Cases.LinkXml {
	[KeptMember (".ctor()")]
	public class UnusedAssemblyWithNoDefinedPreserveHasAllTypesPreserved {
		public static void Main ()
		{
		}

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