2023-04-16 06:12:37 -05:00
|
|
|
error: const `impl` for trait `Add` which is not marked with `#[const_trait]`
|
|
|
|
--> $DIR/const-and-non-const-impl.rs:7:12
|
2020-02-05 11:40:47 -06:00
|
|
|
|
|
|
|
|
LL | impl const std::ops::Add for i32 {
|
2023-04-16 06:12:37 -05:00
|
|
|
| ^^^^^^^^^^^^^
|
2020-02-05 11:40:47 -06:00
|
|
|
|
|
2023-04-16 06:12:37 -05: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
|
2020-02-05 11:40:47 -06:00
|
|
|
|
2023-04-16 06:12:37 -05:00
|
|
|
error: const `impl` for trait `Add` which is not marked with `#[const_trait]`
|
|
|
|
--> $DIR/const-and-non-const-impl.rs:23:12
|
2020-02-05 11:40:47 -06:00
|
|
|
|
|
|
|
|
LL | impl const std::ops::Add for Int {
|
2023-04-16 06:12:37 -05: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
|
2020-02-05 11:40:47 -06:00
|
|
|
|
2022-03-16 04:49:54 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2020-02-05 11:40:47 -06:00
|
|
|
|