Files
rust/tests/ui/traits/const-traits/const-trait-bounds-trait-objects.stderr

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

31 lines
916 B
Plaintext
Raw Normal View History

error: const trait bounds are not allowed in trait object types
--> $DIR/const-trait-bounds-trait-objects.rs:9:17
|
LL | let _: &dyn const Trait;
| ^^^^^^^^^^^
error: `[const]` is not allowed here
--> $DIR/const-trait-bounds-trait-objects.rs:10:13
|
LL | let _: &dyn [const] Trait;
| ^^^^^^^^^^^
|
= note: trait objects cannot have `[const]` trait bounds
error: const trait bounds are not allowed in trait object types
--> $DIR/const-trait-bounds-trait-objects.rs:15:25
|
LL | const fn handle(_: &dyn const NonConst) {}
| ^^^^^^^^^^^^^^
error: `[const]` is not allowed here
--> $DIR/const-trait-bounds-trait-objects.rs:17:19
|
LL | const fn take(_: &dyn [const] NonConst) {}
| ^^^^^^^^^^^
|
= note: trait objects cannot have `[const]` trait bounds
error: aborting due to 4 previous errors