]> git.proxmox.com Git - rustc.git/blame - tests/ui/derives/deriving-bounds.stderr
New upstream version 1.75.0+dfsg1
[rustc.git] / tests / ui / derives / deriving-bounds.stderr
CommitLineData
dc9dc135 1error: cannot find derive macro `Sync` in this scope
dfeec247 2 --> $DIR/deriving-bounds.rs:6:10
dc9dc135
XL
3 |
4LL | #[derive(Sync)]
5 | ^^^^
6 |
7note: unsafe traits like `Sync` should be implemented explicitly
dfeec247 8 --> $DIR/deriving-bounds.rs:6:10
b7449926
XL
9 |
10LL | #[derive(Sync)]
11 | ^^^^
12
dfeec247
XL
13error: cannot find derive macro `Sync` in this scope
14 --> $DIR/deriving-bounds.rs:6:10
15 |
16LL | #[derive(Sync)]
17 | ^^^^
18 |
19note: unsafe traits like `Sync` should be implemented explicitly
20 --> $DIR/deriving-bounds.rs:6:10
21 |
22LL | #[derive(Sync)]
23 | ^^^^
ed00b5ec 24 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
dfeec247
XL
25
26error: cannot find derive macro `Send` in this scope
27 --> $DIR/deriving-bounds.rs:1:10
28 |
29LL | #[derive(Send)]
30 | ^^^^
31 |
32note: unsafe traits like `Send` should be implemented explicitly
33 --> $DIR/deriving-bounds.rs:1:10
34 |
35LL | #[derive(Send)]
36 | ^^^^
37
e1599b0c
XL
38error: cannot find derive macro `Send` in this scope
39 --> $DIR/deriving-bounds.rs:1:10
40 |
41LL | #[derive(Send)]
42 | ^^^^
43 |
44note: unsafe traits like `Send` should be implemented explicitly
45 --> $DIR/deriving-bounds.rs:1:10
46 |
47LL | #[derive(Send)]
48 | ^^^^
ed00b5ec 49 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
e1599b0c 50
dfeec247 51error: aborting due to 4 previous errors
b7449926 52