]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Debug-struct.rs
Rollup merge of #66186 - GuillaumeGomez:long-err-explanation-E0623, r=Dylan-DPC
[rust.git] / src / test / ui / derives / derives-span-Debug-struct.rs
1 // ignore-x86 FIXME: missing sysroot spans (#53081)
2 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
3
4
5 struct Error;
6
7 #[derive(Debug)]
8 struct Struct {
9     x: Error //~ ERROR
10 }
11
12 fn main() {}