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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/Mono.Linker.Tests.Cases/TypeForwarding')
-rw-r--r--test/Mono.Linker.Tests.Cases/TypeForwarding/AttributesScopeUpdated.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/Mono.Linker.Tests.Cases/TypeForwarding/AttributesScopeUpdated.cs b/test/Mono.Linker.Tests.Cases/TypeForwarding/AttributesScopeUpdated.cs
index d9fdf913f..233f4f5ec 100644
--- a/test/Mono.Linker.Tests.Cases/TypeForwarding/AttributesScopeUpdated.cs
+++ b/test/Mono.Linker.Tests.Cases/TypeForwarding/AttributesScopeUpdated.cs
@@ -21,23 +21,24 @@ namespace Mono.Linker.Tests.Cases.TypeForwarding
[RemovedAssembly ("Forwarder.dll")]
[KeptMemberInAssembly ("Implementation.dll", typeof (ImplementationLibrary))]
- static class AttributeScopeUpdated
+ static class AttributesScopeUpdated
{
static void Main ()
{
}
[Kept]
- public static void Test_1 ([TestType3 (typeof (ImplementationLibrary))] int arg)
+ public static void Test_1 ([KeptAttributeAttribute (typeof (TestType3Attribute))] [TestType3 (typeof (ImplementationLibrary))] int arg)
{
}
[Kept]
- public static void Test_2<[TestType3 (typeof (ImplementationLibrary))] T> ()
+ public static void Test_2<[KeptAttributeAttribute (typeof (TestType3Attribute))] [TestType3 (typeof (ImplementationLibrary))] T> ()
{
}
[Kept]
+ [return: KeptAttributeAttribute (typeof (TestType3Attribute))]
[return: TestType3 (typeof (ImplementationLibrary))]
public static void Test_3 ()
{