2024-06-25 08:36:40 +00:00
|
|
|
error: const `impl` for trait `FromResidual` which is not marked with `#[const_trait]`
|
2024-10-30 18:03:44 +00:00
|
|
|
--> $DIR/const-try.rs:15:12
|
2023-04-16 11:12:37 +00:00
|
|
|
|
|
2024-06-25 08:36:40 +00:00
|
|
|
LL | impl const FromResidual<Error> for TryMe {
|
2024-12-09 19:34:43 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ this trait is not `const`
|
2024-03-07 22:09:00 +00:00
|
|
|
|
|
2024-06-25 08:36:40 +00:00
|
|
|
= note: marking a trait with `#[const_trait]` ensures all default method bodies are `const`
|
|
|
|
= note: adding a non-const method body in the future would be a breaking change
|
2023-08-06 13:20:55 +00:00
|
|
|
|
2024-06-25 08:36:40 +00:00
|
|
|
error: const `impl` for trait `Try` which is not marked with `#[const_trait]`
|
2024-10-30 18:03:44 +00:00
|
|
|
--> $DIR/const-try.rs:22:12
|
2023-04-16 11:12:37 +00:00
|
|
|
|
|
2024-06-25 08:36:40 +00:00
|
|
|
LL | impl const Try for TryMe {
|
2024-12-09 19:34:43 +00:00
|
|
|
| ^^^ this trait is not `const`
|
2024-03-07 22:09:00 +00:00
|
|
|
|
|
2024-06-25 08:36:40 +00:00
|
|
|
= note: marking a trait with `#[const_trait]` ensures all default method bodies are `const`
|
|
|
|
= note: adding a non-const method body in the future would be a breaking change
|
2023-04-16 11:12:37 +00:00
|
|
|
|
2024-11-22 02:31:42 +00:00
|
|
|
error[E0015]: `?` is not allowed on `TryMe` in constant functions
|
2024-10-30 18:03:44 +00:00
|
|
|
--> $DIR/const-try.rs:35:5
|
2024-10-26 03:35:16 +00:00
|
|
|
|
|
|
|
|
LL | TryMe?;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
|
|
|
|
2024-11-22 02:31:42 +00:00
|
|
|
error[E0015]: `?` is not allowed on `TryMe` in constant functions
|
2024-10-30 18:03:44 +00:00
|
|
|
--> $DIR/const-try.rs:35:5
|
2024-10-26 03:35:16 +00:00
|
|
|
|
|
|
|
|
LL | TryMe?;
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2023-04-16 11:12:37 +00:00
|
|
|
|
2024-10-26 03:35:16 +00:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|