blob: d50835608fad1d03c74cd21ff4fabeda7aaeb691 [file] [log] [blame]
#![feature(const_fn, type_alias_impl_trait)]
type Bar = impl Send;
// While i32 is structural-match, we do not want to leak this information.
// (See https://github.com/rust-lang/rust/issues/72156)
const fn leak_free() -> Bar {
7i32
}
const LEAK_FREE: Bar = leak_free();
fn leak_free_test() {
match todo!() {
LEAK_FREE => (),
//~^ `impl Send` cannot be used in patterns
_ => (),
}
}
fn main() {}