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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/tools/linker/Mono.Linker.Steps/MarkStep.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/linker/Mono.Linker.Steps/MarkStep.cs b/mcs/tools/linker/Mono.Linker.Steps/MarkStep.cs
index 9bf293d7f13..5c205f37911 100644
--- a/mcs/tools/linker/Mono.Linker.Steps/MarkStep.cs
+++ b/mcs/tools/linker/Mono.Linker.Steps/MarkStep.cs
@@ -372,7 +372,7 @@ namespace Mono.Linker.Steps {
// e.g. System.String[] -> System.String
var ts = (type as TypeSpecification);
if (ts != null) {
- MarkWithResolvedScope (ts.GetElementType ());
+ MarkWithResolvedScope (ts.ElementType);
return;
}