Source: ```rs #![feature(precise_capturing)] pub fn demo(_: &str) -> impl Sized + use<> {} ``` Current rendered output (both HIR-based and middle-based) below (issue: dropping the precise capturing arg): ```rs pub fn demo(_: &str) -> impl Sized ``` Tracking: - https://github.com/rust-lang/rust/issues/123432