]> git.proxmox.com Git - rustc.git/blame - src/test/ui/derives/deriving-bounds.stderr
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / derives / deriving-bounds.stderr
CommitLineData
dc9dc135
XL
1error: cannot find derive macro `Sync` in this scope
2 --> $DIR/deriving-bounds.rs:5:10
3 |
4LL | #[derive(Sync)]
5 | ^^^^
6 |
7note: unsafe traits like `Sync` should be implemented explicitly
0731742a 8 --> $DIR/deriving-bounds.rs:5:10
b7449926
XL
9 |
10LL | #[derive(Sync)]
11 | ^^^^
12
e1599b0c
XL
13error: cannot find derive macro `Send` in this scope
14 --> $DIR/deriving-bounds.rs:1:10
15 |
16LL | #[derive(Send)]
17 | ^^^^
18 |
19note: unsafe traits like `Send` should be implemented explicitly
20 --> $DIR/deriving-bounds.rs:1:10
21 |
22LL | #[derive(Send)]
23 | ^^^^
24
b7449926
XL
25error: aborting due to 2 previous errors
26