From 4f714ab79eb0ddff7b84ac0ec5487a6b347b3b90 Mon Sep 17 00:00:00 2001 From: Sebastian Imlay Date: Mon, 31 Aug 2020 20:20:53 -0700 Subject: [PATCH] Fix test for CI --- tests/expectations/tests/libclang-3.9/objc_inheritance.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/expectations/tests/libclang-3.9/objc_inheritance.rs b/tests/expectations/tests/libclang-3.9/objc_inheritance.rs index 59cfacc34c..5f07dbaab1 100644 --- a/tests/expectations/tests/libclang-3.9/objc_inheritance.rs +++ b/tests/expectations/tests/libclang-3.9/objc_inheritance.rs @@ -77,6 +77,7 @@ impl Baz { Self(unsafe { msg_send!(objc::class!(Baz), alloc) }) } } +impl IBar for Baz {} impl From for Bar { fn from(child: Baz) -> Bar { Bar(child.0)