2023-09-27 17:25:31 -04:00
|
|
|
error: `~const` is not allowed here
|
2024-06-25 09:50:01 +00:00
|
|
|
--> $DIR/const-bound-on-not-const-associated-fn.rs:10:40
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
LL | fn do_something_else() where Self: ~const MyTrait;
|
2023-11-24 14:32:05 +00:00
|
|
|
| ^^^^^^
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
note: this function is not `const`, so it cannot have `~const` trait bounds
|
2024-06-25 09:50:01 +00:00
|
|
|
--> $DIR/const-bound-on-not-const-associated-fn.rs:10:8
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
LL | fn do_something_else() where Self: ~const MyTrait;
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
error: `~const` is not allowed here
|
2024-06-25 09:50:01 +00:00
|
|
|
--> $DIR/const-bound-on-not-const-associated-fn.rs:21:32
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
LL | pub fn foo(&self) where T: ~const MyTrait {
|
2023-11-24 14:32:05 +00:00
|
|
|
| ^^^^^^
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
note: this function is not `const`, so it cannot have `~const` trait bounds
|
2024-06-25 09:50:01 +00:00
|
|
|
--> $DIR/const-bound-on-not-const-associated-fn.rs:21:12
|
2023-09-27 17:25:31 -04:00
|
|
|
|
|
|
|
|
|
LL | pub fn foo(&self) where T: ~const MyTrait {
|
|
|
|
|
| ^^^
|
|
|
|
|
|
2024-06-30 17:08:45 +00:00
|
|
|
error: using `#![feature(effects)]` without enabling next trait solver globally
|
|
|
|
|
|
|
|
|
|
|
= note: the next trait solver must be enabled globally for the effects feature to work correctly
|
|
|
|
|
= help: use `-Znext-solver` to enable
|
|
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2023-09-27 17:25:31 -04:00
|
|
|
|