Alex Crichton | 748bc3c | 2014-05-30 00:45:07 | [diff] [blame] | 1 | // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py' |
Huon Wilson | d9a204b | 2014-01-27 04:28:04 | [diff] [blame] | 2 | |
Nick Cameron | 30e1492 | 2014-12-31 04:32:49 | [diff] [blame] | 3 | #[derive(PartialEq)] |
Huon Wilson | d9a204b | 2014-01-27 04:28:04 | [diff] [blame] | 4 | struct Error; |
5 | |||||
Nick Cameron | 30e1492 | 2014-12-31 04:32:49 | [diff] [blame] | 6 | #[derive(PartialOrd,PartialEq)] |
Huon Wilson | d9a204b | 2014-01-27 04:28:04 | [diff] [blame] | 7 | struct Struct( |
Vadim Petrochenkov | 642669c | 2020-01-08 17:02:10 | [diff] [blame] | 8 | Error //~ ERROR can't compare `Error` with `Error` |
Huon Wilson | d9a204b | 2014-01-27 04:28:04 | [diff] [blame] | 9 | ); |
10 | |||||
11 | fn main() {} |