summary refs log tree commit diff
path: root/src/test/ui/issues-71798.rs
blob: 08b10463d3927699119461181943f93513654960 (plain)
1
2
3
4
5
6
7
fn test_ref(x: &u32) -> impl std::future::Future<Output = u32> + '_ {
    *x //~^ ERROR the trait bound `u32: std::future::Future` is not satisfied
}

fn main() {
    let _ = test_ref & u; //~ ERROR cannot find value `u` in this scope
}