2024-07-26 10:04:02 +00:00
|
|
|
error: item does not constrain `TransactionFuture::{opaque#0}`
|
|
|
|
|
--> $DIR/issue-86800.rs:24:4
|
2024-06-10 16:17:38 +00:00
|
|
|
|
|
|
|
|
|
LL | fn execute_transaction_fut<'f, F, O>(
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
= note: consider removing `#[define_opaque]` or adding an empty `#[define_opaque()]`
|
|
|
|
|
note: this opaque type is supposed to be constrained
|
|
|
|
|
--> $DIR/issue-86800.rs:21:34
|
2024-06-10 16:17:38 +00:00
|
|
|
|
|
|
|
|
|
LL | type TransactionFuture<'__, O> = impl '__ + Future<Output = TransactionResult<O>>;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
error: item does not constrain `TransactionFuture::{opaque#0}`
|
2025-04-01 23:48:41 +02:00
|
|
|
--> $DIR/issue-86800.rs:36:14
|
2024-06-10 16:17:38 +00:00
|
|
|
|
|
|
|
|
|
LL | async fn do_transaction<O>(
|
|
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
|
2024-07-26 10:04:02 +00:00
|
|
|
= note: consider removing `#[define_opaque]` or adding an empty `#[define_opaque()]`
|
|
|
|
|
note: this opaque type is supposed to be constrained
|
|
|
|
|
--> $DIR/issue-86800.rs:21:34
|
2024-06-10 16:17:38 +00:00
|
|
|
|
|
|
|
|
|
LL | type TransactionFuture<'__, O> = impl '__ + Future<Output = TransactionResult<O>>;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2025-04-01 23:48:41 +02:00
|
|
|
error: aborting due to 2 previous errors
|
2022-07-28 15:22:02 +00:00
|
|
|
|