Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
ui
/
error-codes
/
E0311.rs
blob: 566b518b4331dec8dec96379f1a10649698193eb [
file
] [
log
] [
blame
]
fn
no_restriction
<
T
>(
x
:
&())
->
&()
{
with_restriction
::<
T
>(
x
)
//~ ERROR E0311
}
fn
with_restriction
<
'a, T: '
a
>(
x
:
&
'a ()) -> &'
a
()
{
x
}
fn
main
()
{}