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


struct Error;

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

fn main() {}