rust/tests/ui/rfcs/rfc-2632-const-trait-impl/super-traits-fail-3.yn.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
551 B
Plaintext
Raw Normal View History

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 {}
| ^^^^^^^^^^^^^^^^^^^^^^^^
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
|
LL | const fn foo<T: ~const Bar>(x: &T) {
| ^^^
2023-11-11 08:01:58 -06:00
error: aborting due to 2 previous errors