summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/derives-span-Hash-struct.rs
blob: fa5e2af6be8709f4d31e81e5088c865f7e561776 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'


struct Error;

#[derive(Hash)]
struct Struct {
    x: Error //~ ERROR
}

fn main() {}