rust/tests/ui/derives/derives-span-PartialEq-enum.rs

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

14 lines
178 B
Rust
Raw Normal View History

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