2018-07-15 16:11:54 -05:00
|
|
|
error[E0392]: parameter `T` is never used
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:6:15
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | struct NoData<T>;
|
2019-04-17 16:41:34 -05:00
|
|
|
| ^ unused parameter
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: consider removing `T`, referring to it in a field, or using a marker such as `PhantomData`
|
2021-04-30 23:39:50 -05:00
|
|
|
= help: if you intended `T` to be a const parameter, use `const T: usize` instead
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2022-11-16 21:33:45 -06:00
|
|
|
error[E0275]: overflow evaluating the requirement `NoData<NoData<NoData<NoData<NoData<NoData<NoData<...>>>>>>>: Foo`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:9:36
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2020-01-29 18:55:37 -06:00
|
|
|
LL | impl<T> Foo for T where NoData<T>: Foo {
|
|
|
|
| ^^^
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2021-09-28 15:16:42 -05:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_20413`)
|
2022-11-25 21:08:46 -06:00
|
|
|
note: required for `NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<NoData<...>>>>>>>>>>>>>` to implement `Foo`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:9:9
|
2021-03-30 15:37:30 -05:00
|
|
|
|
|
|
|
|
LL | impl<T> Foo for T where NoData<T>: Foo {
|
2023-01-10 21:21:11 -06:00
|
|
|
| ^^^ ^ --- unsatisfied trait bound introduced here
|
2022-11-16 21:09:57 -06:00
|
|
|
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-20413/issue-20413.long-type-hash.txt'
|
2023-03-14 08:56:16 -05:00
|
|
|
= note: 126 redundant requirements hidden
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `NoData<T>` to implement `Foo`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2023-03-14 08:56:16 -05:00
|
|
|
error[E0275]: overflow evaluating the requirement `AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<...>>>>>>>: Bar`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:28:42
|
2020-11-18 10:33:27 -06:00
|
|
|
|
|
|
|
|
LL | impl<T> Bar for T where EvenLessData<T>: Baz {
|
|
|
|
| ^^^
|
|
|
|
|
|
2021-09-28 15:16:42 -05:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_20413`)
|
2022-11-25 21:08:46 -06:00
|
|
|
note: required for `EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<...>>>>>>>` to implement `Baz`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:35:9
|
2021-03-30 15:37:30 -05:00
|
|
|
|
|
|
|
|
LL | impl<T> Baz for T where AlmostNoData<T>: Bar {
|
2023-01-10 21:21:11 -06:00
|
|
|
| ^^^ ^ --- unsatisfied trait bound introduced here
|
2022-11-16 21:09:57 -06:00
|
|
|
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-20413/issue-20413.long-type-hash.txt'
|
2023-03-14 08:56:16 -05:00
|
|
|
note: required for `AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<...>>>>>>>` to implement `Bar`
|
|
|
|
--> $DIR/issue-20413.rs:28:9
|
|
|
|
|
|
|
|
|
LL | impl<T> Bar for T where EvenLessData<T>: Baz {
|
|
|
|
| ^^^ ^ --- unsatisfied trait bound introduced here
|
|
|
|
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-20413/issue-20413.long-type-hash.txt'
|
|
|
|
= note: 125 redundant requirements hidden
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `EvenLessData<T>` to implement `Baz`
|
2020-11-18 10:33:27 -06:00
|
|
|
|
2023-03-14 08:56:16 -05:00
|
|
|
error[E0275]: overflow evaluating the requirement `EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<...>>>>>>>: Baz`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:35:42
|
2020-11-18 10:33:27 -06:00
|
|
|
|
|
|
|
|
LL | impl<T> Baz for T where AlmostNoData<T>: Bar {
|
|
|
|
| ^^^
|
|
|
|
|
|
2021-09-28 15:16:42 -05:00
|
|
|
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_20413`)
|
2022-11-25 21:08:46 -06:00
|
|
|
note: required for `AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<...>>>>>>>` to implement `Bar`
|
2022-11-16 21:09:57 -06:00
|
|
|
--> $DIR/issue-20413.rs:28:9
|
2021-03-30 15:37:30 -05:00
|
|
|
|
|
|
|
|
LL | impl<T> Bar for T where EvenLessData<T>: Baz {
|
2023-01-10 21:21:11 -06:00
|
|
|
| ^^^ ^ --- unsatisfied trait bound introduced here
|
2022-11-16 21:09:57 -06:00
|
|
|
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-20413/issue-20413.long-type-hash.txt'
|
2023-03-14 08:56:16 -05:00
|
|
|
note: required for `EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<AlmostNoData<EvenLessData<...>>>>>>>` to implement `Baz`
|
|
|
|
--> $DIR/issue-20413.rs:35:9
|
|
|
|
|
|
|
|
|
LL | impl<T> Baz for T where AlmostNoData<T>: Bar {
|
|
|
|
| ^^^ ^ --- unsatisfied trait bound introduced here
|
|
|
|
= note: the full type name has been written to '$TEST_BUILD_DIR/issues/issue-20413/issue-20413.long-type-hash.txt'
|
|
|
|
= note: 125 redundant requirements hidden
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `AlmostNoData<T>` to implement `Bar`
|
2020-11-18 10:33:27 -06:00
|
|
|
|
2022-06-11 17:47:21 -05:00
|
|
|
error: aborting due to 4 previous errors
|
2018-07-15 16:11:54 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0275, E0392.
|
2018-07-15 16:11:54 -05:00
|
|
|
For more information about an error, try `rustc --explain E0275`.
|