You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many of the macOS-only tests in tests/expectations are failing. Using rustc 1.58.1. Here is one example:
error[E0310]: the parameter type `ObjectType` may not live long enough
--> /Users/adamlesinski/workspace/rust-bindgen/tests/expectations/tests/libclang-4/objc_template.rs:63:9
|
56 | pub trait IFooMultiGeneric<KeyType, ObjectType>:
| ---------- help: consider adding an explicit lifetime bound...: `ObjectType: 'static`
...
63 | msg_send!(*self, objectForKey: key)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `*mut ObjectType` will meet its required lifetime bounds...
|
note: ...that is required by this bound
--> /Users/adamlesinski/.cargo/registry/src/github.com-1ecc6299db9ec823/objc-0.2.7/src/message/mod.rs:177:51
|
177 | where T: Message, A: MessageArguments, R: Any {
| ^^^
= note: this error originates in the macro `msg_send` (in Nightly builds, run with -Z macro-backtrace for more info)
The text was updated successfully, but these errors were encountered:
Many of the macOS-only tests in
tests/expectations
are failing. Using rustc 1.58.1. Here is one example:The text was updated successfully, but these errors were encountered: