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