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
Got compiling error on below code:
pub fn chained_stream() -> impl Stream { #[stream] async { yield 1; } .map(|d| d * 2) }
error: unexpected token --> tests/stream.rs:215:6 | 215 | .map(|d| d * 2) | ^^^
I think relying on feature stmt_expr_attributes would makes a little bit hard to support this.
stmt_expr_attributes
The text was updated successfully, but these errors were encountered:
relying on feature stmt_expr_attributes
FYI, you can use stream_block macro to work around stmt_expr_attributes.
Sorry, something went wrong.
No branches or pull requests
Got compiling error on below code:
I think relying on feature
stmt_expr_attributes
would makes a little bit hard to support this.The text was updated successfully, but these errors were encountered: