about summary refs log tree commit diff
path: root/src/test/ui/derives/derives-span-Hash-tuple-struct.rs
blob: bb271e60745a5962ce6361e6628aa563304318dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ignore-musl
// ^ due to stderr output differences
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'


struct Error;

#[derive(Hash)]
struct Struct(
    Error //~ ERROR
);

fn main() {}