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

CopyLibrary.cs « Dependencies « Libraries « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 792f869fb9ac5facf948088ba7480b9ed5670dbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace Mono.Linker.Tests.Cases.Libraries.Dependencies
{
	public interface ICopyLibraryInterface
	{
		void CopyLibraryInterfaceMethod ();
		void CopyLibraryExplicitImplementationInterfaceMethod ();
	}

	public interface ICopyLibraryStaticInterface
	{
		static abstract void CopyLibraryStaticInterfaceMethod ();
		static abstract void CopyLibraryExplicitImplementationStaticInterfaceMethod ();
		public static abstract void PublicStaticInterfaceMethod ();
	}
}