Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
crashes
/
108814.rs
blob: c8db848f2e1888c307d09ecaeb2a82efe5326680 [
file
] [
log
] [
blame
]
//@ known-bug: #108814
#![
feature
(
non_lifetime_binders
)]
fn
take
(
_
:
impl
for
<
T
>
FnOnce
(
T
)
->
T
)
{}
fn
main
()
{
take
(|
x
|
x
)
}