mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
145 B
Rust
11 lines
145 B
Rust
//@ run-pass
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
enum Test<'a> {
|
|
Slice(&'a isize)
|
|
}
|
|
|
|
fn main() {
|
|
assert_eq!(Test::Slice(&1), Test::Slice(&1))
|
|
}
|