]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/inductive-overflow/supertrait-auto-trait.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / traits / inductive-overflow / supertrait-auto-trait.stderr
1 error[E0568]: auto traits cannot have super traits
2 --> $DIR/supertrait-auto-trait.rs:8:19
3 |
4 LL | auto trait Magic: Copy {}
5 | ----- ^^^^ help: remove the super traits
6 | |
7 | auto trait cannot have super traits
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 = note: required because of the requirements on the impl of `Magic` for `NoClone`
16 note: required by a bound in `copy`
17 --> $DIR/supertrait-auto-trait.rs:10:12
18 |
19 LL | fn copy<T: Magic>(x: T) -> (T, T) { (x, x) }
20 | ^^^^^ required by this bound in `copy`
21
22 error: aborting due to 2 previous errors
23
24 Some errors have detailed explanations: E0277, E0568.
25 For more information about an error, try `rustc --explain E0277`.