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

UnusedClassGetsRemoved.cs « Basic « Mono.Linker.Tests.Cases « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85d60e33dad67464dc01a253ffa9b4c3e13f2482 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Mono.Linker.Tests.Cases.Basic {
	public class UnusedClassGetsRemoved {
		public static void Main ()
		{
		}
	}

	class Unused {
	}
}