rust/tests/ui/issues-71798.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
203 B
Rust
Raw Normal View History

fn test_ref(x: &u32) -> impl std::future::Future<Output = u32> + '_ {
//~^ ERROR `u32` is not a future
*x
}
fn main() {
let _ = test_ref & u; //~ ERROR cannot find value `u` in this scope
}