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

Base.cs « EmbeddedLinkXmlPreservesAdditionalAssemblyWithOverriddenMethod « Dependencies « LinkXml « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9803fada2d94972e2e40d895884a75289247240 (plain)
1
2
3
4
5
6
7
namespace Mono.Linker.Tests.Cases.LinkXml.Dependencies.EmbeddedLinkXmlPreservesAdditionalAssemblyWithOverriddenMethod {
	public class Base {
		public virtual void VirtualMethodFromBase ()
		{
		}
	}
}