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

FieldsOfReturnTypeAreRemoved.cs « Com « InternalCalls « Interop « Mono.Linker.Tests.Cases « Tests « linker - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1447fc6aa7d55290e64fc3180880d6aa609b9152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Mono.Linker.Tests.Cases.Expectations.Assertions;

namespace Mono.Linker.Tests.Cases.Interop.InternalCalls.Com {
	class FieldsOfReturnTypeAreRemoved {
		public static void Main ()
		{
			var a = SomeMethod ();
		}

		[Kept]
		[ComImport]
		[Guid ("D7BB1889-3AB7-4681-A115-60CA9158FECA")]
		class A {
			private int field;
		}

		[Kept]
		[MethodImpl (MethodImplOptions.InternalCall)]
		static extern A SomeMethod ();
	}
}