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

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

12 lines
193 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(
Error //~ ERROR
);
fn main() {}