2021-12-29 08:29:14 +00:00
|
|
|
error[E0015]: cannot call non-const operator in constant functions
|
2021-11-26 22:10:46 +00:00
|
|
|
--> $DIR/issue-90870.rs:8:5
|
|
|
|
|
|
|
|
|
LL | a == b
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
2021-12-29 08:29:14 +00:00
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
2021-11-26 22:10:46 +00:00
|
|
|
help: consider dereferencing here
|
|
|
|
|
|
|
|
|
LL | *a == *b
|
|
|
|
| + +
|
|
|
|
|
2021-12-29 08:29:14 +00:00
|
|
|
error[E0015]: cannot call non-const operator in constant functions
|
2021-11-26 22:10:46 +00:00
|
|
|
--> $DIR/issue-90870.rs:14:5
|
|
|
|
|
|
|
|
|
LL | a == b
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
2021-12-29 08:29:14 +00:00
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
2021-11-26 22:10:46 +00:00
|
|
|
help: consider dereferencing here
|
|
|
|
|
|
|
|
|
LL | ****a == ****b
|
|
|
|
| ++++ ++++
|
|
|
|
|
2021-12-29 08:29:14 +00:00
|
|
|
error[E0015]: cannot call non-const operator in constant functions
|
2021-11-26 22:10:46 +00:00
|
|
|
--> $DIR/issue-90870.rs:21:12
|
|
|
|
|
|
|
|
|
LL | if l == r {
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
2021-12-29 08:29:14 +00:00
|
|
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
2021-11-26 22:10:46 +00:00
|
|
|
help: consider dereferencing here
|
|
|
|
|
|
|
|
|
LL | if *l == *r {
|
|
|
|
| + +
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0015`.
|