mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
248 B
Rust
16 lines
248 B
Rust
//@ 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 => {}
|
|
|
|
_ => (),
|
|
}
|
|
}
|