2023-03-14 08:56:16 -05:00
|
|
|
error[E0275]: overflow evaluating the requirement `RootDatabase: RefUnwindSafe`
|
2021-05-31 13:22:40 -05:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:27:13
|
2019-05-01 12:10:01 -05:00
|
|
|
|
|
2021-05-31 13:22:40 -05:00
|
|
|
LL | _parse: <ParseQuery as Query<RootDatabase>>::Data,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-05-01 12:10:01 -05:00
|
|
|
|
|
2022-08-15 15:31:37 -05:00
|
|
|
note: required for `RootDatabase` to implement `SourceDatabase`
|
2021-08-27 17:34:48 -05:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:44:9
|
|
|
|
|
|
|
|
|
LL | impl<T> SourceDatabase for T
|
|
|
|
| ^^^^^^^^^^^^^^ ^
|
2023-01-10 21:21:11 -06:00
|
|
|
LL | where
|
|
|
|
LL | T: RefUnwindSafe,
|
|
|
|
| ------------- unsatisfied trait bound introduced here
|
2022-08-15 15:31:37 -05:00
|
|
|
note: required for `ParseQuery` to implement `Query<RootDatabase>`
|
2021-05-31 13:22:40 -05:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:37:10
|
2021-03-30 15:37:30 -05:00
|
|
|
|
|
2021-05-31 13:22:40 -05:00
|
|
|
LL | impl<DB> Query<DB> for ParseQuery
|
|
|
|
| ^^^^^^^^^ ^^^^^^^^^^
|
2023-01-10 21:21:11 -06:00
|
|
|
LL | where
|
|
|
|
LL | DB: SourceDatabase,
|
|
|
|
| -------------- unsatisfied trait bound introduced here
|
2019-05-01 12:10:01 -05:00
|
|
|
|
2020-09-07 04:01:45 -05:00
|
|
|
error: aborting due to previous error
|
2019-05-01 12:10:01 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|