Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
issues-71798.rs
blob: 14b6c0f35812f8a3e0f67f85650ebccdaa866116 [
file
] [
log
] [
blame
]
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
}