summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/derives-span-PartialEq-tuple-struct.rs
blob: 10ac347aa0bee0b6a4c1cec2c949f56a1f2283c3 (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(PartialEq)]
struct Struct(
    Error //~ ERROR
);

fn main() {}