rust/tests/crashes/110627.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
128 B
Rust
Raw Normal View History

//@ known-bug: #110627
#![feature(non_lifetime_binders)]
fn take(id: impl for<T> Fn(T) -> T) {}
fn main() {
take(|x| x)
}