mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
15 lines
221 B
Rust
15 lines
221 B
Rust
//@ known-bug: rust-lang/rust#125841
|
|
#![feature(non_lifetime_binders)]
|
|
fn take(id: impl for<T> Fn(T) -> T) {
|
|
id(0);
|
|
id("");
|
|
}
|
|
|
|
fn take2() -> impl for<T> Fn(T) -> T {
|
|
|x| x
|
|
}
|
|
|
|
fn main() {
|
|
take(|x| take2)
|
|
}
|