Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
125185.rs
blob: 8693d6c7662b23c9086c0297b60959794a975775 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: rust-lang/rust#125185
//@ compile-flags: -Zvalidate-mir
type
Foo
=
impl
Send
;
struct
A
;
const
VALUE
:
Foo
=
value
();
fn
test
(
foo
:
Foo
<
'a>, f: impl for<'
b
>
FnMut
())
{
match
VALUE
{
0
|
0
=>
{}
_
=>
(),
}
}