2023-02-14 17:17:34 +08:00
|
|
|
//@ revisions: cpass
|
2022-11-09 11:15:02 +08:00
|
|
|
|
|
|
|
#[derive(PartialEq, Eq)]
|
|
|
|
struct Id<'a> {
|
|
|
|
ns: &'a str,
|
|
|
|
}
|
|
|
|
fn visit_struct() {
|
|
|
|
let id = Id { ns: "random1" };
|
2023-02-14 17:17:34 +08:00
|
|
|
const FLAG: Id<'static> = Id { ns: "needs_to_be_the_same" };
|
2022-11-09 11:15:02 +08:00
|
|
|
match id {
|
|
|
|
FLAG => {}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn visit_struct2() {
|
|
|
|
let id = Id { ns: "random2" };
|
2023-02-14 17:17:34 +08:00
|
|
|
const FLAG: Id<'static> = Id { ns: "needs_to_be_the_same" };
|
2022-11-09 11:15:02 +08:00
|
|
|
match id {
|
|
|
|
FLAG => {}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|