2024-06-25 09:50:01 +00:00
|
|
|
error: const `impl` for trait `Drop` which is not marked with `#[const_trait]`
|
2024-08-17 14:19:34 +02:00
|
|
|
--> $DIR/const-drop-fail-2.rs:39:25
|
2024-06-25 09:50:01 +00:00
|
|
|
|
|
|
|
|
LL | impl<T: ~const A> const Drop for ConstDropImplWithNonConstBounds<T> {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= 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
|
|
|
|
|
2024-06-21 11:57:24 +00:00
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
2024-10-26 20:54:38 +00:00
|
|
|
--> $DIR/const-drop-fail-2.rs:20:19
|
2024-06-21 11:57:24 +00:00
|
|
|
|
|
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
2024-10-26 20:54:38 +00:00
|
|
|
| ^^^^^^
|
2024-06-21 11:57:24 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
2024-10-26 20:54:38 +00:00
|
|
|
--> $DIR/const-drop-fail-2.rs:20:19
|
2024-10-20 19:49:11 +00:00
|
|
|
|
|
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
2024-10-26 20:54:38 +00:00
|
|
|
| ^^^^^^
|
2024-10-20 19:49:11 +00:00
|
|
|
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
|
2024-10-30 18:47:54 +00:00
|
|
|
error[E0277]: the trait bound `T: ~const A` is not satisfied
|
|
|
|
--> $DIR/const-drop-fail-2.rs:41:9
|
|
|
|
|
|
|
|
|
LL | T::a();
|
|
|
|
| ^^^^^^
|
|
|
|
|
2024-10-30 17:42:31 +00:00
|
|
|
error[E0493]: destructor of `T` cannot be evaluated at compile-time
|
|
|
|
--> $DIR/const-drop-fail-2.rs:20:36
|
2024-06-25 09:50:01 +00:00
|
|
|
|
|
2024-10-30 17:42:31 +00:00
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
|
|
|
| ^ - value is dropped here
|
|
|
|
| |
|
|
|
|
| the destructor for this type cannot be evaluated in constant functions
|
2024-06-25 09:50:01 +00:00
|
|
|
|
2024-10-30 17:42:31 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2023-04-16 11:12:37 +00:00
|
|
|
|
2024-10-30 17:42:31 +00:00
|
|
|
Some errors have detailed explanations: E0277, E0493.
|
|
|
|
For more information about an error, try `rustc --explain E0277`.
|