diff options
author | Sebastian Imlay <sebastian.imlay@gmail.com> | 2020-08-31 20:20:53 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-09-16 12:26:24 +0200 |
commit | 4f714ab79eb0ddff7b84ac0ec5487a6b347b3b90 (patch) | |
tree | 580a59bad7c3ff750b8735b1ef6dfe8757addec6 | |
parent | 4a51c4552ce7e0fbca478e4acd11ecb40341e61f (diff) |
Fix test for CI
-rw-r--r-- | tests/expectations/tests/libclang-3.9/objc_inheritance.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/expectations/tests/libclang-3.9/objc_inheritance.rs b/tests/expectations/tests/libclang-3.9/objc_inheritance.rs index 59cfacc3..5f07dbaa 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<Baz> for Bar { fn from(child: Baz) -> Bar { Bar(child.0) |