rust/tests/ui/higher-ranked/trait-bounds/issue-42114.rs
2023-05-30 13:04:25 +02:00

21 lines
203 B
Rust

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