2024-06-21 12:22:29 +00:00
|
|
|
warning: the feature `effects` is incomplete and may not be safe to use and/or cause compiler crashes
|
|
|
|
|
--> $DIR/call-generic-method-dup-bound.rs:4:30
|
|
|
|
|
|
|
|
|
|
|
LL | #![feature(const_trait_impl, effects)]
|
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= note: see issue #102090 <https://github.com/rust-lang/rust/issues/102090> for more information
|
|
|
|
|
= note: `#[warn(incomplete_features)]` on by default
|
|
|
|
|
|
2024-06-21 11:57:24 +00:00
|
|
|
error: const `impl` for trait `PartialEq` which is not marked with `#[const_trait]`
|
|
|
|
|
--> $DIR/call-generic-method-dup-bound.rs:8:12
|
|
|
|
|
|
|
|
|
|
|
LL | impl const PartialEq for S {
|
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= 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/call-generic-method-dup-bound.rs:19:44
|
|
|
|
|
|
|
|
|
|
|
LL | const fn equals_self<T: PartialEq + ~const PartialEq>(t: &T) -> bool {
|
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: `~const` can only be applied to `#[const_trait]` traits
|
|
|
|
|
--> $DIR/call-generic-method-dup-bound.rs:26:37
|
|
|
|
|
|
|
|
|
|
|
LL | const fn equals_self2<T: A + ~const PartialEq>(t: &T) -> bool {
|
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2024-06-25 09:50:01 +00:00
|
|
|
error: aborting due to 3 previous errors; 1 warning emitted
|
2024-06-21 11:57:24 +00:00
|
|
|
|