]> git.lizzy.rs Git - rust.git/blob - tests/ui/derives/derives-span-Hash-struct.rs
Auto merge of #107197 - aliemjay:patch-2, r=jackh726
[rust.git] / tests / ui / derives / derives-span-Hash-struct.rs
1 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
2
3
4 struct Error;
5
6 #[derive(Hash)]
7 struct Struct {
8     x: Error //~ ERROR
9 }
10
11 fn main() {}