about summary refs log tree commit diff
path: root/tests/crashes/110627.rs
blob: 752682fa6059e5f78c4d546c45851ff94ee07eae (plain)
1
2
3
4
5
6
7
8
//@ known-bug: #110627
#![feature(non_lifetime_binders)]

fn take(id: impl for<T> Fn(T) -> T) {}

fn main() {
    take(|x| x)
}