]> git.lizzy.rs Git - rust.git/blob - src/test/ui/derives/derives-span-Clone-struct.rs
Rollup merge of #68342 - lcnr:type_name_docs, r=Dylan-DPC
[rust.git] / src / test / ui / derives / derives-span-Clone-struct.rs
1 // FIXME: missing sysroot spans (#53081)
2 // ignore-i586-unknown-linux-gnu
3 // ignore-i586-unknown-linux-musl
4 // ignore-i686-unknown-linux-musl
5 // This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
6
7
8 struct Error;
9
10 #[derive(Clone)]
11 struct Struct {
12     x: Error //~ ERROR
13 }
14
15 fn main() {}