-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
Allow #[project]
to be used on if let
expressions
#181
Conversation
This PR would work correctly, except for the fact that rust-lang/rust#68618 causes a compilation error to be emitted before we even have a chance to run. That issue is independent of the implementation of this PR, so this PR should start working automatically once the issue is resolved.
8920b02
to
f626aa8
Compare
#[project]
to be used on if let
expressions#[project]
to be used on if let
expressions
@taiki-e: This is ready for review. It will start compiling tomorrow, when rust-lang/rust#69201 becomes part of the next nightly. The output of |
8998a80
to
9910909
Compare
All tests are now passing with the latest nightly. |
@taiki-e: Are there any changes that you'd like me to make? |
Looks great, thank you! bors r+ |
89: Add tests for `#[attr] if` r=taiki-e a=taiki-e Closes #86 Refs: taiki-e/pin-project#181 Co-authored-by: Taiki Endo <[email protected]>
This PR would work correctly, except for the fact that
rust-lang/rust#68618 causes a compilation error to be emitted before we
even have a chance to run. That issue is independent of the
implementation of this PR, so this PR should start working automatically
once the issue is resolved.