]> git.lizzy.rs Git - rust.git/blob - tests/ui/traits/inductive-overflow/supertrait-auto-trait.stderr
Rollup merge of #106766 - GuillaumeGomez:rm-stripper-dead-code, r=notriddle
[rust.git] / tests / ui / traits / inductive-overflow / supertrait-auto-trait.stderr
1 error[E0568]: auto traits cannot have super traits or lifetime bounds
2   --> $DIR/supertrait-auto-trait.rs:8:17
3    |
4 LL | auto trait Magic: Copy {}
5    |            -----^^^^^^ help: remove the super traits or lifetime bounds
6    |            |
7    |            auto trait cannot have super traits or lifetime bounds
8
9 error[E0277]: the trait bound `NoClone: Copy` is not satisfied
10   --> $DIR/supertrait-auto-trait.rs:16:23
11    |
12 LL |     let (a, b) = copy(NoClone);
13    |                  ---- ^^^^^^^ the trait `Copy` is not implemented for `NoClone`
14    |                  |
15    |                  required by a bound introduced by this call
16    |
17 note: required for `NoClone` to implement `Magic`
18   --> $DIR/supertrait-auto-trait.rs:8:12
19    |
20 LL | auto trait Magic: Copy {}
21    |            ^^^^^
22 note: required by a bound in `copy`
23   --> $DIR/supertrait-auto-trait.rs:10:12
24    |
25 LL | fn copy<T: Magic>(x: T) -> (T, T) { (x, x) }
26    |            ^^^^^ required by this bound in `copy`
27 help: consider annotating `NoClone` with `#[derive(Copy)]`
28    |
29 LL | #[derive(Copy)]
30    |
31
32 error: aborting due to 2 previous errors
33
34 Some errors have detailed explanations: E0277, E0568.
35 For more information about an error, try `rustc --explain E0277`.