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();
}