]> git.proxmox.com Git - rustc.git/blob - src/test/ui/derives/derives-span-Hash-tuple-struct.rs
Update upstream source from tag 'upstream/1.41.1+dfsg1'
[rustc.git] / src / test / ui / derives / derives-span-Hash-tuple-struct.rs
1 // ignore-x86 FIXME: missing sysroot spans (#53081)
2 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
3
4
5 struct Error;
6
7 #[derive(Hash)]
8 struct Struct(
9 Error //~ ERROR
10 );
11
12 fn main() {}