|
1 |
| -warning: the feature `return_type_notation` is incomplete and may not be safe to use and/or cause compiler crashes |
2 |
| - --> $DIR/display.rs:1:12 |
3 |
| - | |
4 |
| -LL | #![feature(return_type_notation)] |
5 |
| - | ^^^^^^^^^^^^^^^^^^^^ |
6 |
| - | |
7 |
| - = note: see issue #109417 <https://github.com/rust-lang/rust/issues/109417> for more information |
8 |
| - = note: `#[warn(incomplete_features)]` on by default |
9 |
| - |
10 | 1 | error[E0277]: the trait bound `impl Sized { <T as Assoc>::method(..) }: Trait` is not satisfied
|
11 |
| - --> $DIR/display.rs:15:17 |
| 2 | + --> $DIR/display.rs:14:17 |
12 | 3 | |
|
13 | 4 | LL | needs_trait(T::method());
|
14 | 5 | | ----------- ^^^^^^^^^^^ the trait `Trait` is not implemented for `impl Sized { <T as Assoc>::method(..) }`
|
15 | 6 | | |
|
16 | 7 | | required by a bound introduced by this call
|
17 | 8 | |
|
18 | 9 | note: required by a bound in `needs_trait`
|
19 |
| - --> $DIR/display.rs:5:24 |
| 10 | + --> $DIR/display.rs:4:24 |
20 | 11 | |
|
21 | 12 | LL | fn needs_trait(_: impl Trait) {}
|
22 | 13 | | ^^^^^ required by this bound in `needs_trait`
|
23 | 14 |
|
24 | 15 | error[E0277]: the trait bound `impl Sized { <T as Assoc>::method_with_lt(..) }: Trait` is not satisfied
|
25 |
| - --> $DIR/display.rs:17:17 |
| 16 | + --> $DIR/display.rs:16:17 |
26 | 17 | |
|
27 | 18 | LL | needs_trait(T::method_with_lt());
|
28 | 19 | | ----------- ^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `impl Sized { <T as Assoc>::method_with_lt(..) }`
|
29 | 20 | | |
|
30 | 21 | | required by a bound introduced by this call
|
31 | 22 | |
|
32 | 23 | note: required by a bound in `needs_trait`
|
33 |
| - --> $DIR/display.rs:5:24 |
| 24 | + --> $DIR/display.rs:4:24 |
34 | 25 | |
|
35 | 26 | LL | fn needs_trait(_: impl Trait) {}
|
36 | 27 | | ^^^^^ required by this bound in `needs_trait`
|
37 | 28 |
|
38 | 29 | error[E0277]: the trait bound `impl Sized: Trait` is not satisfied
|
39 |
| - --> $DIR/display.rs:19:17 |
| 30 | + --> $DIR/display.rs:18:17 |
40 | 31 | |
|
41 | 32 | LL | needs_trait(T::method_with_ty());
|
42 | 33 | | ----------- ^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `impl Sized`
|
43 | 34 | | |
|
44 | 35 | | required by a bound introduced by this call
|
45 | 36 | |
|
46 | 37 | help: this trait has no implementations, consider adding one
|
47 |
| - --> $DIR/display.rs:4:1 |
| 38 | + --> $DIR/display.rs:3:1 |
48 | 39 | |
|
49 | 40 | LL | trait Trait {}
|
50 | 41 | | ^^^^^^^^^^^
|
51 | 42 | note: required by a bound in `needs_trait`
|
52 |
| - --> $DIR/display.rs:5:24 |
| 43 | + --> $DIR/display.rs:4:24 |
53 | 44 | |
|
54 | 45 | LL | fn needs_trait(_: impl Trait) {}
|
55 | 46 | | ^^^^^ required by this bound in `needs_trait`
|
56 | 47 |
|
57 | 48 | error[E0277]: the trait bound `impl Sized: Trait` is not satisfied
|
58 |
| - --> $DIR/display.rs:21:17 |
| 49 | + --> $DIR/display.rs:20:17 |
59 | 50 | |
|
60 | 51 | LL | needs_trait(T::method_with_ct());
|
61 | 52 | | ----------- ^^^^^^^^^^^^^^^^^^^ the trait `Trait` is not implemented for `impl Sized`
|
62 | 53 | | |
|
63 | 54 | | required by a bound introduced by this call
|
64 | 55 | |
|
65 | 56 | help: this trait has no implementations, consider adding one
|
66 |
| - --> $DIR/display.rs:4:1 |
| 57 | + --> $DIR/display.rs:3:1 |
67 | 58 | |
|
68 | 59 | LL | trait Trait {}
|
69 | 60 | | ^^^^^^^^^^^
|
70 | 61 | note: required by a bound in `needs_trait`
|
71 |
| - --> $DIR/display.rs:5:24 |
| 62 | + --> $DIR/display.rs:4:24 |
72 | 63 | |
|
73 | 64 | LL | fn needs_trait(_: impl Trait) {}
|
74 | 65 | | ^^^^^ required by this bound in `needs_trait`
|
75 | 66 |
|
76 |
| -error: aborting due to 4 previous errors; 1 warning emitted |
| 67 | +error: aborting due to 4 previous errors |
77 | 68 |
|
78 | 69 | For more information about this error, try `rustc --explain E0277`.
|
0 commit comments