10 lines
160 B
Rust
10 lines
160 B
Rust
|
// https://github.com/rust-lang/rust/issues/55454
|
||
|
// compile-pass
|
||
|
|
||
|
#[derive(PartialEq)]
|
||
|
struct This<T>(T);
|
||
|
|
||
|
fn main() {
|
||
|
This(Some(&1)) == This(Some(&1));
|
||
|
}
|