]> git.proxmox.com Git - rustc.git/blob - src/test/ui/derives/derives-span-PartialOrd-struct.rs
New upstream version 1.52.0~beta.3+dfsg1
[rustc.git] / src / test / ui / derives / derives-span-PartialOrd-struct.rs
1 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
2
3 #[derive(PartialEq)]
4 struct Error;
5
6 #[derive(PartialOrd,PartialEq)]
7 struct Struct {
8 x: Error //~ ERROR can't compare `Error` with `Error`
9 }
10
11 fn main() {}