Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
error-codes
/
E0311.fixed
blob: fd828f39a97a9f99a00399d8830b2460097c4c6b [
file
]
//@ run-rustfix
#![allow(warnings)]
fn no_restriction
<
'a, T: '
a
>(
x
:
&
'a ()) -> &'
a
()
{
with_restriction
::<
T
>(
x
)
//~ ERROR E0311
}
fn with_restriction
<
'a, T: '
a
>(
x
:
&
'a ()) -> &'
a
()
{
x
}
fn main
()
{}