We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following valid code stopped compiling since v1.67, most likely due to #103491:
fn opaque<'a: 'a>(_: &'a str) -> *mut impl Sized { &mut () } fn main() { let x = opaque(&String::new()); //~ ERROR temporary value dropped while borrowed drop(x); }