rust/tests/ui/derives/derives-span-Eq-struct.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
196 B
Rust
Raw Normal View History

// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
#[derive(PartialEq)]
struct Error;
#[derive(Eq,PartialEq)]
struct Struct {
x: Error //~ ERROR
}
fn main() {}