]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Hash-tuple-struct.rs
Rollup merge of #64812 - GuillaumeGomez:add-test-for-e0543, r=Centril
[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() {}