mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +00:00
10 lines
132 B
Rust
10 lines
132 B
Rust
//@ known-bug: #108814
|
|
|
|
#![feature(non_lifetime_binders)]
|
|
|
|
fn take(_: impl for<T> FnOnce(T) -> T) {}
|
|
|
|
fn main() {
|
|
take(|x| x)
|
|
}
|