summary refs log tree commit diff
path: root/src/test/ui/derives/derives-span-Hash-enum.rs
blob: daff0b27553e605a8fa073490b4d9c4d8f4ad67c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// FIXME: missing sysroot spans (#53081)
// ignore-i586-unknown-linux-gnu
// ignore-i586-unknown-linux-musl
// ignore-i686-unknown-linux-musl
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'

struct Error;

#[derive(Hash)]
enum Enum {
   A(
     Error //~ ERROR
     )
}

fn main() {}