2021-08-27 22:34:48 +00:00
|
|
|
error[E0275]: overflow evaluating the requirement `SalsaStorage: RefUnwindSafe`
|
2021-05-31 18:22:40 +00:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:27:13
|
2019-05-01 17:10:01 +00:00
|
|
|
|
|
2021-05-31 18:22:40 +00:00
|
|
|
LL | _parse: <ParseQuery as Query<RootDatabase>>::Data,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2019-05-01 17:10:01 +00:00
|
|
|
|
|
2022-04-13 17:17:17 +00:00
|
|
|
= note: required because it appears within the type `PhantomData<SalsaStorage>`
|
2021-08-27 22:34:48 +00:00
|
|
|
= note: required because it appears within the type `Unique<SalsaStorage>`
|
|
|
|
= note: required because it appears within the type `Box<SalsaStorage>`
|
|
|
|
note: required because it appears within the type `Runtime<RootDatabase>`
|
|
|
|
--> $DIR/cycle-cache-err-60010.rs:23:8
|
|
|
|
|
|
|
|
|
LL | struct Runtime<DB: Database> {
|
|
|
|
| ^^^^^^^
|
|
|
|
note: required because it appears within the type `RootDatabase`
|
|
|
|
--> $DIR/cycle-cache-err-60010.rs:20:8
|
|
|
|
|
|
|
|
|
LL | struct RootDatabase {
|
|
|
|
| ^^^^^^^^^^^^
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `RootDatabase` to implement `SourceDatabase`
|
2021-08-27 22:34:48 +00:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:44:9
|
|
|
|
|
|
|
|
|
LL | impl<T> SourceDatabase for T
|
|
|
|
| ^^^^^^^^^^^^^^ ^
|
2023-01-11 03:21:11 +00:00
|
|
|
LL | where
|
|
|
|
LL | T: RefUnwindSafe,
|
|
|
|
| ------------- unsatisfied trait bound introduced here
|
2022-08-15 20:31:37 +00:00
|
|
|
note: required for `ParseQuery` to implement `Query<RootDatabase>`
|
2021-05-31 18:22:40 +00:00
|
|
|
--> $DIR/cycle-cache-err-60010.rs:37:10
|
2021-03-30 20:37:30 +00:00
|
|
|
|
|
2021-05-31 18:22:40 +00:00
|
|
|
LL | impl<DB> Query<DB> for ParseQuery
|
|
|
|
| ^^^^^^^^^ ^^^^^^^^^^
|
2023-01-11 03:21:11 +00:00
|
|
|
LL | where
|
|
|
|
LL | DB: SourceDatabase,
|
|
|
|
| -------------- unsatisfied trait bound introduced here
|
2019-05-01 17:10:01 +00:00
|
|
|
|
2020-09-07 09:01:45 +00:00
|
|
|
error: aborting due to previous error
|
2019-05-01 17:10:01 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0275`.
|