Sign in
fuchsia
/
third_party
/
rust
/
17ae00d1228ced4eb5a19fa4371b080da87b6b2a
/
.
/
tests
/
crashes
/
131758.rs
blob: 942c5fd7a5025770d1eb549574c423621dc62119 [
file
] [
log
] [
blame
]
//@ known-bug: #131758
#![
feature
(
unboxed_closures
)]
trait
Foo
{}
impl
<
T
:
Fn
<(
i32
,)>>
Foo
for
T
{}
fn
baz
<
T
:
Foo
>(
_
:
T
)
{}
fn
main
()
{
baz
(|
x
|
());
}