|
1 | 1 | error[E0277]: the trait bound `String: Copy` is not satisfied
|
2 |
| - --> $DIR/type-alias-bounds.rs:31:12 |
| 2 | + --> $DIR/type-alias-bounds.rs:30:12 |
3 | 3 | |
|
4 | 4 | LL | let _: AliasConstUnused;
|
5 | 5 | | ^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
6 | 6 | |
|
7 | 7 | note: required by a bound in `ct_unused_1::AliasConstUnused`
|
8 |
| - --> $DIR/type-alias-bounds.rs:29:41 |
| 8 | + --> $DIR/type-alias-bounds.rs:28:41 |
9 | 9 | |
|
10 | 10 | LL | type AliasConstUnused where String: Copy = I32<{ 0; 0 }>;
|
11 | 11 | | ^^^^ required by this bound in `AliasConstUnused`
|
12 | 12 |
|
13 | 13 | error[E0277]: the trait bound `String: Copy` is not satisfied
|
14 |
| - --> $DIR/type-alias-bounds.rs:39:12 |
| 14 | + --> $DIR/type-alias-bounds.rs:38:12 |
15 | 15 | |
|
16 | 16 | LL | let _: AliasFnUnused<String>;
|
17 | 17 | | ^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
18 | 18 | |
|
19 | 19 | note: required by a bound in `AliasFnUnused`
|
20 |
| - --> $DIR/type-alias-bounds.rs:36:27 |
| 20 | + --> $DIR/type-alias-bounds.rs:35:27 |
21 | 21 | |
|
22 | 22 | LL | type AliasFnUnused<T: Copy> = (T, I32<{ code() }>);
|
23 | 23 | | ^^^^ required by this bound in `AliasFnUnused`
|
24 | 24 |
|
25 | 25 | error[E0277]: the trait bound `String: Copy` is not satisfied
|
26 |
| - --> $DIR/type-alias-bounds.rs:57:12 |
| 26 | + --> $DIR/type-alias-bounds.rs:56:12 |
27 | 27 | |
|
28 | 28 | LL | let _: AliasAssocConstUsed<String>;
|
29 | 29 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
30 | 30 | |
|
31 | 31 | note: required by a bound in `AliasAssocConstUsed`
|
32 |
| - --> $DIR/type-alias-bounds.rs:55:41 |
| 32 | + --> $DIR/type-alias-bounds.rs:54:41 |
33 | 33 | |
|
34 | 34 | LL | type AliasAssocConstUsed<T: Trait + Copy> = I32<{ T::DATA }>;
|
35 | 35 | | ^^^^ required by this bound in `AliasAssocConstUsed`
|
36 | 36 |
|
37 | 37 | error[E0277]: the trait bound `String: Copy` is not satisfied
|
38 |
| - --> $DIR/type-alias-bounds.rs:65:12 |
| 38 | + --> $DIR/type-alias-bounds.rs:64:12 |
39 | 39 | |
|
40 | 40 | LL | let _: AliasFnUsed<String>;
|
41 | 41 | | ^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
|
42 | 42 | |
|
43 | 43 | note: required by a bound in `AliasFnUsed`
|
44 |
| - --> $DIR/type-alias-bounds.rs:62:33 |
| 44 | + --> $DIR/type-alias-bounds.rs:61:33 |
45 | 45 | |
|
46 | 46 | LL | type AliasFnUsed<T: Trait + Copy> = I32<{ code::<T>() }>;
|
47 | 47 | | ^^^^ required by this bound in `AliasFnUsed`
|
|
0 commit comments