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

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

22 lines
879 B
Plaintext
Raw Normal View History

2020-01-02 18:31:30 -06:00
error[E0658]: const trait impls are experimental
2022-08-28 01:27:31 -05:00
--> $DIR/feature-gate.rs:10:6
2020-01-02 18:31:30 -06:00
|
LL | impl const T for S {}
| ^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #67792 <https://github.com/rust-lang/rust/issues/67792> for more information
2020-01-02 18:31:30 -06:00
= help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
2022-08-28 01:27:31 -05:00
error[E0658]: `const_trait` is a temporary placeholder for marking a trait that is suitable for `const` `impls` and all default bodies as `const`, which may be removed or renamed in the future.
--> $DIR/feature-gate.rs:8:1
|
LL | #[const_trait]
| ^^^^^^^^^^^^^^
|
= note: see issue #67792 <https://github.com/rust-lang/rust/issues/67792> for more information
= help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
error: aborting due to 2 previous errors
2020-01-02 18:31:30 -06:00
For more information about this error, try `rustc --explain E0658`.