rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const-impl-trait.stderr

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

40 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-04-16 06:12:37 -05:00
error[E0635]: unknown feature `const_cmp`
--> $DIR/const-impl-trait.rs:6:5
|
LL | const_cmp,
| ^^^^^^^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-09-13 11:04:42 -05:00
--> $DIR/const-impl-trait.rs:11:30
2023-04-16 06:12:37 -05:00
|
LL | const fn cmp(a: &impl ~const PartialEq) -> bool {
| ^^^^^^^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-09-13 11:04:42 -05:00
--> $DIR/const-impl-trait.rs:15:30
2023-04-16 06:12:37 -05:00
|
LL | const fn wrap(x: impl ~const PartialEq + ~const Destruct)
| ^^^^^^^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-09-13 11:04:42 -05:00
--> $DIR/const-impl-trait.rs:16:20
2023-04-16 06:12:37 -05:00
|
LL | -> impl ~const PartialEq + ~const Destruct
| ^^^^^^^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-09-13 11:04:42 -05:00
--> $DIR/const-impl-trait.rs:23:29
2023-04-16 06:12:37 -05:00
|
LL | fn huh() -> impl ~const PartialEq + ~const Destruct + Copy;
| ^^^^^^^^^
error: ~const can only be applied to `#[const_trait]` traits
2023-09-13 11:04:42 -05:00
--> $DIR/const-impl-trait.rs:27:29
2023-04-16 06:12:37 -05:00
|
LL | fn huh() -> impl ~const PartialEq + ~const Destruct + Copy {
| ^^^^^^^^^
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0635`.