mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
23 lines
373 B
Rust
23 lines
373 B
Rust
// Regression test for the ICE described in #89088.
|
|
|
|
// check-pass
|
|
|
|
#![allow(indirect_structural_match)]
|
|
use std::borrow::Cow;
|
|
|
|
const FOO: &A = &A::Field(Cow::Borrowed("foo"));
|
|
|
|
#[derive(PartialEq, Eq)]
|
|
enum A {
|
|
Field(Cow<'static, str>)
|
|
}
|
|
|
|
fn main() {
|
|
let var = A::Field(Cow::Borrowed("bar"));
|
|
|
|
match &var {
|
|
FOO => todo!(),
|
|
_ => todo!()
|
|
}
|
|
}
|