]> git.lizzy.rs Git - rust.git/blob - tests/ui/dyn-star/feature-gate-dyn_star.stderr
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / dyn-star / feature-gate-dyn_star.stderr
1 error[E0658]: dyn* trait objects are unstable
2   --> $DIR/feature-gate-dyn_star.rs:5:31
3    |
4 LL | pub fn dyn_star_parameter(_: &dyn* Send) {
5    |                               ^^^^^^^^^
6    |
7    = note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
8    = help: add `#![feature(dyn_star)]` to the crate attributes to enable
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0658`.