summary refs log tree commit diff
path: root/src/test/ui/derives/derives-span-Debug-tuple-struct.rs
blob: c693facfeaa92678641321635df71c5274b28ea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ignore-x86 FIXME: missing sysroot spans (#53081)
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'


struct Error;

#[derive(Debug)]
struct Struct(
    Error //~ ERROR
);

fn main() {}