]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Hash-tuple-struct.rs
Auto merge of #65020 - pnkfelix:targetted-fix-for-always-marking-rust-abi-unwind...
[rust.git] / src / test / ui / derives / derives-span-Hash-tuple-struct.rs
1 // ignore-x86
2 // ^ due to stderr output differences
3 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
4
5
6 struct Error;
7
8 #[derive(Hash)]
9 struct Struct(
10     Error //~ ERROR
11 );
12
13 fn main() {}