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
Haven't confirmed if it has been fixed since 02/22
pub fn f<F: FnOnce(u64) -> u64>(f1: F) -> u64 { f1(1) } #[test] fn test_weird_rustc_thing() { let y = f({ |x| x+1 ); // shouldn't this need a closing curly brace? assert_eq!(y, 2); println!("WEIRD RUSTC BUG"); }
Seems to only repro inside an inner mod.
Here's a link to a repro https://github.com/nipunn1313/rustc_parser_bug
The text was updated successfully, but these errors were encountered:
Introduced in #57944. Will be fixed in #58903. Duplicate of #58886.
Sorry, something went wrong.
Thanks! #57944 looks pretty great. Especially given the test case on the fix https://github.com/rust-lang/rust/pull/58903/files#diff-44324609d226c76463a9b78f62aba74d !!
No branches or pull requests
Haven't confirmed if it has been fixed since 02/22
Seems to only repro inside an inner mod.
Here's a link to a repro
https://github.com/nipunn1313/rustc_parser_bug
The text was updated successfully, but these errors were encountered: