Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
higher-ranked
/
trait-bounds
/
issue-42114.rs
blob: 94acd9223732199698096ab67020c4fe81aa7abc [
file
] [
log
] [
blame
] [
edit
]
//@ 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
();
}