From 55965fd8b83fb25d8be1933b00030b41ed8e6cd9 Mon Sep 17 00:00:00 2001 From: monojenkins Date: Tue, 30 Jul 2019 08:14:56 -0400 Subject: [PATCH] [Introspection] ABRecord is abstract and cannot be instantiated. (#6685) Fixes: https://github.com/xamarin/maccore/issues/1903 --- tests/introspection/ApiCMAttachmentTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/introspection/ApiCMAttachmentTest.cs b/tests/introspection/ApiCMAttachmentTest.cs index a0ecf34c59..fbfb78a086 100644 --- a/tests/introspection/ApiCMAttachmentTest.cs +++ b/tests/introspection/ApiCMAttachmentTest.cs @@ -173,6 +173,7 @@ namespace Introspection { if (nativeName.StartsWith ("CGPDF", StringComparison.Ordinal)) // all those types crash the app return true; switch (nativeName) { + case "ABRecord": // abstract class case "CFMachPort": case "CFMessagePort": case "DispatchIO": // no way to instantiate it