Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
higher-ranked
/
trait-bounds
/
issue-42114.rs
blob: 94acd9223732199698096ab67020c4fe81aa7abc [
file
] [
log
] [
blame
]
//@ check-pass
fn
lifetime
<
'
a
>()
where
&
'a (): '
a
,
{
/* do nothing */
}
fn
doesnt_work
()
where
for
<
'a> &'
a
():
'
a
,
{
/* do nothing */
}
fn
main
()
{
lifetime
();
doesnt_work
();
}