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

TypeForwardersRewrite.cs « TypeForwarding « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 240f365439954a2d2796b2d9a85b7d8e4b97eead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
using System;
using Mono.Linker.Tests.Cases.Expectations.Assertions;
using Mono.Linker.Tests.Cases.Expectations.Metadata;

namespace Mono.Linker.Tests.Cases.TypeForwarding
{
	// Actions:
	// link - This assembly, Forwarder.dll and Implementation.dll

	[SetupLinkerArgument ("--skip-unresolved", "true")]

	[SetupCompileArgument ("/unsafe")]
	[SetupCompileBefore ("Forwarder.dll", new[] { "Dependencies/TypeForwardersRewriteLib.cs" })]

	[SetupCompileAfter ("Implementation.dll", new[] { "Dependencies/TypeForwardersRewriteLib.cs" })]
	[SetupCompileAfter ("Forwarder.dll", new[] { "Dependencies/TypeForwardersRewriteForwarders.cs" }, references: new[] { "Implementation.dll" })]

	[RemovedAssembly ("Forwarder.dll")]
	[RemovedAssemblyReference ("test", "Forwarder")]
	unsafe class TypeForwardersRewrite
	{
		static void Main ()
		{
#if NETCOREAPP
			Test (null);
#endif
			Test2 (null);
			Test3<C> (ref c);
			Test4 (null, null);
			Test5 (null);
			Test6<string> (null);
			c = null;
			g = null;
			e += null;
			I tc = new TC ();
			tc.Test (null);
			I ti = new TS ();
			ti.Test (null);
			var gc = new GC<TC> ();
		}

		[Kept]
		static C c;
		[Kept]
		static G<C> g;

		[Kept]
		[KeptBackingField]
		[KeptEventAddMethod]
		[KeptEventRemoveMethod]
		static event D e;

		[Kept]
		[KeptBaseType (typeof (MulticastDelegate))]
		[KeptMember (".ctor(System.Object,System.IntPtr)")]
		[KeptMember ("Invoke()")]
		delegate C D ();

#if NETCOREAPP
		[Kept]
		static void Test (delegate*<C, S*> arg)
		{
		}
#endif

		[Kept]
		static C Test2 (C c)
		{
			C lv = null;
			return lv;
		}

		[Kept]
		static C[] Test3<T> (ref C c) where T : C
		{
			return null;
		}

		[Kept]
		static G<C> Test4 (G<C>[] a, object b)
		{
			Console.WriteLine (typeof (C));
			Console.WriteLine (typeof (G<>));
			Console.WriteLine (typeof (G<>.N));
			C c = (C) b;
			Console.WriteLine (c);
			return null;
		}

		[Kept]
		static G<C>.N Test5 (G<C>.N arg)
		{
			return null;
		}

		[Kept]
		static void Test6<T> (G<T>.N arg)
		{
		}

		[Kept]
		[KeptBaseType (typeof (C))]
		[KeptMember (".ctor()")]
		[KeptInterface (typeof (I))]
		class TC : C, I
		{
			[Kept]
			void I.Test (C c)
			{
			}
		}

		[Kept]
		[KeptInterface (typeof (I))]
		struct TS : I
		{
			[Kept]
			public void Test (C c)
			{
			}
		}

		[Kept]
		[KeptMember (".ctor()")]
		class GC<T> where T : I
		{
		}
	}
}