rust/tests/crashes/110627.rs
2024-04-14 11:21:51 +02:00

9 lines
128 B
Rust

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