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

UnusedFieldPreservedByLinkXmlIsKept.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: bc1b0f3374560c1c3b1bda7c6cfd03347c1a5b1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Mono.Linker.Tests.Cases.Expectations.Assertions;

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

		[Kept]
		class Unused {
			[Kept]
			private int _preserved;

			private int _notPreserved;
		}
	}
}