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

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

namespace Mono.Linker.Tests.Cases.TestFramework {
	[SandboxDependency (typeof (CanSandboxDependenciesUsingType_Source1))]
	[SandboxDependency (typeof (CanSandboxDependenciesUsingType_Source2.Nested1.Nested2), "NameChanged.cs")]
	public class CanSandboxDependenciesUsingType {
		public static void Main ()
		{
			CanSandboxDependenciesUsingType_Source1.Method ();
			CanSandboxDependenciesUsingType_Source2.Nested1.Nested2.Method ();
		}
	}
}