mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-05 20:34:52 +00:00
12 lines
155 B
Rust
12 lines
155 B
Rust
// Minimized test from #59311.
|
|
|
|
pub fn crash()
|
|
where
|
|
for<'a> &'a (): 'static,
|
|
{
|
|
|| {};
|
|
//~^ ERROR higher-ranked lifetime error
|
|
}
|
|
|
|
fn main() {}
|