-
Notifications
You must be signed in to change notification settings - Fork 741
Can't compile tests/expectations
on macOS version 10.12.6
#1004
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
It looks like this is trying to define two properties or something: Check out the Should be a fairly easy fix for someone with with a mac. |
@highfive: assign me |
Hey @alexeyzab! Thanks for your interest in working on this issue. It's now assigned to you! |
The expectations tests compile after I manually do the following edits: Add As you've mentioned, the commas are added because of something in |
Ok, I didn't realize that this was inside the It looks like Yet, inside the quote! {
#( #args ),*
} The I think we can just remove that |
WIP, fixes rust-lang#1004. After looking at how `msg_send!` is supposed to be used, I realized that we were erroneously passing type signatures to it. The expectations compile now, but some of them are not formatted properly. My guess is that `rustfmt` does not know how to format the following: ``` msg_send!(obj, arg1:1 arg2:2 arg3:3) ``` Notice the lack of separatros between `arg`s.
…itzgen Make objc-related expectations compile Fixes #1004. After looking at how `msg_send!` is supposed to be used, I realized that we were erroneously passing type signatures to it. The expectations compile now, but some of them are not formatted properly. My guess is that `rustfmt` does not know how to format the following: ``` msg_send!(obj, arg1:1 arg2:2 arg3:3) ``` Notice the lack of separatros between the `arg`s. Any advice on how to proceed here is appreciated. r? @fitzgen
After running
I get the following error:
The text was updated successfully, but these errors were encountered: