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

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

35 lines
963 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-07-29 03:20:25 -05:00
--> $DIR/super-traits-fail-3.rs:13:19
|
LL | trait Bar: ~const Foo {}
| ^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-07-29 03:20:25 -05:00
--> $DIR/super-traits-fail-3.rs:13:19
|
LL | trait Bar: ~const Foo {}
| ^^^
2023-10-04 13:34:50 -05:00
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
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 4 previous errors