42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
error: const `impl` for trait `Drop` which is not marked with `#[const_trait]`
|
|
--> $DIR/const-drop-fail-2.rs:39:25
|
|
|
|
|
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
|
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const-drop-fail-2.rs:20:19
|
|
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
|
| ^^^^^^
|
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
|
--> $DIR/const-drop-fail-2.rs:20:19
|
|
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
|
| ^^^^^^
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error[E0277]: the trait bound `T: ~const A` is not satisfied
|
|
--> $DIR/const-drop-fail-2.rs:41:9
|
|
|
|
|
LL | T::a();
|
|
| ^^^^^^
|
|
|
|
error[E0493]: destructor of `T` cannot be evaluated at compile-time
|
|
--> $DIR/const-drop-fail-2.rs:20:36
|
|
|
|
|
LL | const fn check<T: ~const Destruct>(_: T) {}
|
|
| ^ - value is dropped here
|
|
| |
|
|
| the destructor for this type cannot be evaluated in constant functions
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
Some errors have detailed explanations: E0277, E0493.
|
|
For more information about an error, try `rustc --explain E0277`.
|