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/call-generic-in-impl.rs:10:9
|
2024-06-21 11:57:24 +00:00
|
|
|
|
|
|
|
|
LL | impl<T: ~const PartialEq> const MyPartialEq for 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/call-generic-in-impl.rs:10:9
|
2024-10-20 19:49:11 +00:00
|
|
|
|
|
|
|
|
LL | impl<T: ~const PartialEq> const MyPartialEq for T {
|
2024-10-26 20:54:38 +00:00
|
|
|
| ^^^^^^
|
2024-06-25 09:50:01 +00:00
|
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
2024-06-25 09:50:01 +00:00
|
|
|
|
|
|
|
error[E0015]: cannot call non-const fn `<T as PartialEq>::eq` in constant functions
|
|
|
|
--> $DIR/call-generic-in-impl.rs:12:9
|
|
|
|
|
|
|
|
|
LL | PartialEq::eq(self, other)
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2024-06-21 11:57:24 +00:00
|
|
|
|
2024-10-20 19:49:11 +00:00
|
|
|
For more information about this error, try `rustc --explain E0015`.
|