mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
248 B
Rust
14 lines
248 B
Rust
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
|
|
|
|
#[derive(PartialEq)]
|
|
struct Error;
|
|
|
|
#[derive(PartialOrd,PartialEq)]
|
|
enum Enum {
|
|
A {
|
|
x: Error //~ ERROR can't compare `Error` with `Error`
|
|
}
|
|
}
|
|
|
|
fn main() {}
|