mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
19 lines
348 B
Rust
19 lines
348 B
Rust
// Regression test for the ICE described in #89088.
|
|
|
|
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!(), //~ERROR derive(PartialEq)
|
|
_ => todo!()
|
|
}
|
|
}
|