]> git.proxmox.com Git - rustc.git/blob - src/test/ui/dyn-star/feature-gate-dyn_star.stderr
New upstream version 1.65.0+dfsg1
[rustc.git] / src / test / 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 #91611 <https://github.com/rust-lang/rust/issues/91611> 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`.