mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00

Prepare for rework done by the rest of RUST-142440. Co-authored-by: Kivooeo <Kivooeo123@gmail.com>
9 lines
203 B
Rust
9 lines
203 B
Rust
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
|
|
}
|