mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
222 B
Rust
12 lines
222 B
Rust
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
|
|
|
|
#[derive(Eq,PartialOrd,PartialEq)]
|
|
struct Error;
|
|
|
|
#[derive(Ord,Eq,PartialOrd,PartialEq)]
|
|
struct Struct(
|
|
Error //~ ERROR
|
|
);
|
|
|
|
fn main() {}
|