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
This works
#![allow(unused)] fn f<F>() -> Result<Option<F>, ()> { panic!() } fn g<G>() -> Option<G> { f().unwrap().unwrap() }
This does not:
#![allow(unused)] fn f<F>() -> Result<Option<F>, ()> { panic!() } fn g<G>() -> Option<G> where Option<G>: Sized { // <-- f().unwrap().unwrap() }
The text was updated successfully, but these errors were encountered:
Might be related to #24066 (explained in more detail in this comment)
Sorry, something went wrong.
Thanks for filing this! Came up in serde-rs/serde#305.
workaround: explicitly specify type parameters rather than leaving them to inference:
#![allow(unused)] fn f<F>() -> Result<Option<F>, ()> { panic!() } fn g<G>() -> Option<G> where Option<G>: Sized { f::<Option<G>>().unwrap().unwrap() } fn main() {}
Triage: the given code works when tested on Rust 1.41. Closing.
No branches or pull requests
This works
This does not:
The text was updated successfully, but these errors were encountered: