rust/tests/ui/higher-ranked/trait-bounds/trivial-does-not-hold.rs
2024-05-11 02:10:45 -04:00

12 lines
155 B
Rust

// Minimized test from #59311.
pub fn crash()
where
for<'a> &'a (): 'static,
{
|| {};
//~^ ERROR higher-ranked lifetime error
}
fn main() {}