]> git.lizzy.rs Git - rust.git/blob - tests/ui/rfc-2632-const-trait-impl/feature-gate.stock.stderr
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / rfc-2632-const-trait-impl / feature-gate.stock.stderr
1 error[E0658]: const trait impls are experimental
2   --> $DIR/feature-gate.rs:10:6
3    |
4 LL | impl const T for S {}
5    |      ^^^^^
6    |
7    = note: see issue #67792 <https://github.com/rust-lang/rust/issues/67792> for more information
8    = help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
9
10 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.
11   --> $DIR/feature-gate.rs:8:1
12    |
13 LL | #[const_trait]
14    | ^^^^^^^^^^^^^^
15    |
16    = note: see issue #67792 <https://github.com/rust-lang/rust/issues/67792> for more information
17    = help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0658`.