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

RequiresOnAttribute.cs « RequiresCapability « Mono.Linker.Tests.Cases « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a2adfef1d84d1c59ca088f906f79dc07ad08f59 (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
// 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.

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Mono.Linker.Tests.Cases.Expectations.Assertions;

namespace Mono.Linker.Tests.Cases.RequiresCapability
{
	[SkipKeptItemsValidation]
	[ExpectedNoWarnings]
	class RequiresOnAttribute
	{
		public static void Main ()
		{
			TestRequiresOnAttributeOnGenericParameter ();
			new TypeWithAttributeWhichRequires ();
			MethodWithAttributeWhichRequires ();
			_fieldWithAttributeWhichRequires = 0;
			PropertyWithAttributeWhichRequires = false;
			TestMethodWhichRequiresWithAttributeWhichRequires ();
		}
		class AttributeWhichRequiresAttribute : Attribute
		{
			[RequiresUnreferencedCode ("Message for --AttributeWhichRequiresAttribute.ctor--")]
			[RequiresAssemblyFiles ("Message for --AttributeWhichRequiresAttribute.ctor--")]
			[RequiresDynamicCode ("Message for --AttributeWhichRequiresAttribute.ctor--")]
			public AttributeWhichRequiresAttribute ()
			{
			}
		}

		class AttributeWhichRequiresOnPropertyAttribute : Attribute
		{
			public AttributeWhichRequiresOnPropertyAttribute ()
			{
			}

			public bool PropertyWhichRequires {
				get => false;

				[RequiresUnreferencedCode ("--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
				[RequiresAssemblyFiles ("--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
				[RequiresDynamicCode ("--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
				set { }
			}
		}

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		class GenericTypeWithAttributedParameter<[AttributeWhichRequires] T>
		{
			public static void TestMethod () { }
		}

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		static void GenericMethodWithAttributedParameter<[AttributeWhichRequires] T> () { }

		static void TestRequiresOnAttributeOnGenericParameter ()
		{
			GenericTypeWithAttributedParameter<int>.TestMethod ();
			GenericMethodWithAttributedParameter<int> ();
		}

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[AttributeWhichRequires]
		[AttributeWhichRequiresOnProperty (PropertyWhichRequires = true)]
		class TypeWithAttributeWhichRequires
		{
		}

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[AttributeWhichRequires]
		[AttributeWhichRequiresOnProperty (PropertyWhichRequires = true)]
		static void MethodWithAttributeWhichRequires () { }

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[AttributeWhichRequires]
		[AttributeWhichRequiresOnProperty (PropertyWhichRequires = true)]
		static int _fieldWithAttributeWhichRequires;

		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresAttribute.ctor--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresAttribute.ctor--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL2026", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--")]
		[ExpectedWarning ("IL3002", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--AttributeWhichRequiresOnPropertyAttribute.PropertyWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[AttributeWhichRequires]
		[AttributeWhichRequiresOnProperty (PropertyWhichRequires = true)]
		static bool PropertyWithAttributeWhichRequires { get; set; }

		[AttributeWhichRequires]
		[AttributeWhichRequiresOnProperty (PropertyWhichRequires = true)]
		[RequiresUnreferencedCode ("--MethodWhichRequiresWithAttributeWhichRequires--")]
		[RequiresAssemblyFiles ("--MethodWhichRequiresWithAttributeWhichRequires--")]
		[RequiresDynamicCode ("--MethodWhichRequiresWithAttributeWhichRequires--")]
		static void MethodWhichRequiresWithAttributeWhichRequires () { }

		[ExpectedWarning ("IL2026", "--MethodWhichRequiresWithAttributeWhichRequires--")]
		[ExpectedWarning ("IL3002", "--MethodWhichRequiresWithAttributeWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		[ExpectedWarning ("IL3050", "--MethodWhichRequiresWithAttributeWhichRequires--", ProducedBy = ProducedBy.Analyzer)]
		static void TestMethodWhichRequiresWithAttributeWhichRequires ()
		{
			MethodWhichRequiresWithAttributeWhichRequires ();
		}
	}
}