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

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

19 lines
784 B
Plaintext
Raw Normal View History

2024-06-21 12:22:29 +00:00
warning: the feature `effects` is incomplete and may not be safe to use and/or cause compiler crashes
--> $DIR/minicore.rs:8:30
|
LL | #![feature(const_trait_impl, effects, const_mut_refs)]
| ^^^^^^^
|
= note: see issue #102090 <https://github.com/rust-lang/rust/issues/102090> for more information
= note: `#[warn(incomplete_features)]` on by default
2024-06-21 11:57:24 +00:00
error[E0094]: intrinsic has wrong number of const parameters: found 1, expected 0
--> $DIR/minicore.rs:517:27
|
LL | const fn const_eval_select<ARG: Tuple, F, G, RET>(
| ^^^^^^^^^^^^^^^^^^^^^^^ expected 0 const parameters
2024-06-21 12:22:29 +00:00
error: aborting due to 1 previous error; 1 warning emitted
2024-06-21 11:57:24 +00:00
For more information about this error, try `rustc --explain E0094`.