We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We currently fail to parse src/libstd/sys/sgx/waitqueue.rs:
pub macro try_lock_or_false { ($e:expr) => { if let Some(v) = $e.try_lock() { v } else { return false } } }
error: expected parentheses --> src/libstd/sys/sgx/waitqueue.rs:469:33 | | pub macro try_lock_or_false { | _________________________________^ | | ($e:expr) => { | | if let Some(v) = $e.try_lock() { | | v ... | | | } | | } | |_____^
The parser for syn::ItemMacro2 is expecting decl macro syntax that looks like:
pub macro try_lock_or_false($e:expr) { /* ... */ }
The text was updated successfully, but these errors were encountered:
Fixed in e80823d.
Sorry, something went wrong.
No branches or pull requests
We currently fail to parse src/libstd/sys/sgx/waitqueue.rs:
The parser for syn::ItemMacro2 is expecting decl macro syntax that looks like:
The text was updated successfully, but these errors were encountered: