|
1 | 1 | error[E0276]: impl has stricter requirements than trait
|
2 |
| - --> $DIR/traits-misc-mismatch-1.rs:27:5 |
| 2 | + --> $DIR/traits-misc-mismatch-1.rs:27:26 |
3 | 3 | |
|
4 | 4 | LL | fn test_error1_fn<T: Eq>(&self);
|
5 | 5 | | -------------------------------- definition of `test_error1_fn` from trait
|
6 | 6 | ...
|
7 | 7 | LL | fn test_error1_fn<T: Ord>(&self) {}
|
8 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: Ord` |
| 8 | + | ^^^ impl has extra requirement `T: Ord` |
9 | 9 |
|
10 | 10 | error[E0276]: impl has stricter requirements than trait
|
11 |
| - --> $DIR/traits-misc-mismatch-1.rs:31:5 |
| 11 | + --> $DIR/traits-misc-mismatch-1.rs:31:31 |
12 | 12 | |
|
13 | 13 | LL | fn test_error2_fn<T: Eq + Ord>(&self);
|
14 | 14 | | -------------------------------------- definition of `test_error2_fn` from trait
|
15 | 15 | ...
|
16 | 16 | LL | fn test_error2_fn<T: Eq + B>(&self) {}
|
17 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: B` |
| 17 | + | ^ impl has extra requirement `T: B` |
18 | 18 |
|
19 | 19 | error[E0276]: impl has stricter requirements than trait
|
20 |
| - --> $DIR/traits-misc-mismatch-1.rs:35:5 |
| 20 | + --> $DIR/traits-misc-mismatch-1.rs:35:26 |
21 | 21 | |
|
22 | 22 | LL | fn test_error3_fn<T: Eq + Ord>(&self);
|
23 | 23 | | -------------------------------------- definition of `test_error3_fn` from trait
|
24 | 24 | ...
|
25 | 25 | LL | fn test_error3_fn<T: B + Eq>(&self) {}
|
26 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: B` |
| 26 | + | ^ impl has extra requirement `T: B` |
27 | 27 |
|
28 | 28 | error[E0276]: impl has stricter requirements than trait
|
29 |
| - --> $DIR/traits-misc-mismatch-1.rs:45:5 |
| 29 | + --> $DIR/traits-misc-mismatch-1.rs:45:26 |
30 | 30 | |
|
31 | 31 | LL | fn test_error5_fn<T: A>(&self);
|
32 | 32 | | ------------------------------- definition of `test_error5_fn` from trait
|
33 | 33 | ...
|
34 | 34 | LL | fn test_error5_fn<T: B>(&self) {}
|
35 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: B` |
| 35 | + | ^ impl has extra requirement `T: B` |
36 | 36 |
|
37 | 37 | error[E0276]: impl has stricter requirements than trait
|
38 |
| - --> $DIR/traits-misc-mismatch-1.rs:51:5 |
| 38 | + --> $DIR/traits-misc-mismatch-1.rs:51:30 |
39 | 39 | |
|
40 | 40 | LL | fn test_error7_fn<T: A>(&self);
|
41 | 41 | | ------------------------------- definition of `test_error7_fn` from trait
|
42 | 42 | ...
|
43 | 43 | LL | fn test_error7_fn<T: A + Eq>(&self) {}
|
44 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: Eq` |
| 44 | + | ^^ impl has extra requirement `T: Eq` |
45 | 45 |
|
46 | 46 | error[E0276]: impl has stricter requirements than trait
|
47 |
| - --> $DIR/traits-misc-mismatch-1.rs:54:5 |
| 47 | + --> $DIR/traits-misc-mismatch-1.rs:54:26 |
48 | 48 | |
|
49 | 49 | LL | fn test_error8_fn<T: B>(&self);
|
50 | 50 | | ------------------------------- definition of `test_error8_fn` from trait
|
51 | 51 | ...
|
52 | 52 | LL | fn test_error8_fn<T: C>(&self) {}
|
53 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `T: C` |
| 53 | + | ^ impl has extra requirement `T: C` |
54 | 54 |
|
55 | 55 | error[E0276]: impl has stricter requirements than trait
|
56 |
| - --> $DIR/traits-misc-mismatch-1.rs:67:5 |
| 56 | + --> $DIR/traits-misc-mismatch-1.rs:67:18 |
57 | 57 | |
|
58 | 58 | LL | fn method<G:Getter<isize>>(&self);
|
59 | 59 | | ---------------------------------- definition of `method` from trait
|
60 | 60 | ...
|
61 | 61 | LL | fn method<G: Getter<usize>>(&self) {}
|
62 |
| - | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `G: Getter<usize>` |
| 62 | + | ^^^^^^^^^^^^^ impl has extra requirement `G: Getter<usize>` |
63 | 63 |
|
64 | 64 | error: aborting due to 7 previous errors
|
65 | 65 |
|
|
0 commit comments