2023-11-11 08:01:58 -06:00
|
|
|
error: `~const` is not allowed here
|
|
|
|
--> $DIR/super-traits-fail-3.rs:13:12
|
|
|
|
|
|
|
|
|
LL | trait Bar: ~const Foo {}
|
2023-11-24 08:32:05 -06:00
|
|
|
| ^^^^^^
|
2023-11-11 08:01:58 -06:00
|
|
|
|
|
|
|
|
note: this trait is not a `#[const_trait]`, so it cannot have `~const` trait bounds
|
|
|
|
--> $DIR/super-traits-fail-3.rs:13:1
|
|
|
|
|
|
|
|
|
LL | trait Bar: ~const Foo {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2022-10-03 12:08:42 -05:00
|
|
|
error: ~const can only be applied to `#[const_trait]` traits
|
2023-11-11 08:01:58 -06:00
|
|
|
--> $DIR/super-traits-fail-3.rs:18:24
|
2022-10-03 12:08:42 -05:00
|
|
|
|
|
|
|
|
LL | const fn foo<T: ~const Bar>(x: &T) {
|
2022-10-20 04:39:09 -05:00
|
|
|
| ^^^
|
2022-10-03 12:08:42 -05:00
|
|
|
|
2023-11-11 08:01:58 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2022-10-03 12:08:42 -05:00
|
|
|
|