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