Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0311.rs
blob: 8d3ad0dd5e51b8b97a3f2c469671d0045b788094 [
file
] [
log
] [
blame
]
//@ run-rustfix
#![
allow
(
warnings
)]
fn
no_restriction
<
T
>(
x
:
&())
->
&()
{
with_restriction
::<
T
>(
x
)
//~ ERROR E0311
}
fn
with_restriction
<
'a, T: '
a
>(
x
:
&
'a ()) -> &'
a
()
{
x
}
fn
main
()
{}