Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
crashes
/
110627.rs
blob: 752682fa6059e5f78c4d546c45851ff94ee07eae [
file
] [
log
] [
blame
]
//@ known-bug: #110627
#![
feature
(
non_lifetime_binders
)]
fn
take
(
id
:
impl
for
<
T
>
Fn
(
T
)
->
T
)
{}
fn
main
()
{
take
(|
x
|
x
)
}