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/Serialization/SerializationTypeRecursion.cs')
-rw-r--r--test/Mono.Linker.Tests.Cases/Serialization/SerializationTypeRecursion.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Mono.Linker.Tests.Cases/Serialization/SerializationTypeRecursion.cs b/test/Mono.Linker.Tests.Cases/Serialization/SerializationTypeRecursion.cs
index dfad711ba..af92529b4 100644
--- a/test/Mono.Linker.Tests.Cases/Serialization/SerializationTypeRecursion.cs
+++ b/test/Mono.Linker.Tests.Cases/Serialization/SerializationTypeRecursion.cs
@@ -54,18 +54,18 @@ namespace Mono.Linker.Tests.Cases.Serialization
[Kept]
[KeptBackingField]
- public GetSetPropertyType p2 { [Kept]get; [Kept]set; }
+ public GetSetPropertyType p2 { [Kept] get; [Kept] set; }
// removed
PrivatePropertyType p3 { get; set; }
[Kept]
[KeptBackingField]
- public PublicGetPrivateSetPropertyType p4 { [Kept]get; [Kept]private set; }
+ public PublicGetPrivateSetPropertyType p4 { [Kept] get; [Kept] private set; }
[Kept]
[KeptBackingField]
- public PrivateGetPublicSetPropertyType p5 { [Kept]private get; [Kept]set; }
+ public PrivateGetPublicSetPropertyType p5 { [Kept] private get; [Kept] set; }
[Kept]
public RecursiveType f4;