]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gate-unsized_tuple_coercion.stderr
Auto merge of #50665 - alexcrichton:fix-single-item-path-warnings, r=oli-obk
[rust.git] / src / test / ui / feature-gate-unsized_tuple_coercion.stderr
1 error[E0658]: Unsized tuple coercion is not stable enough for use and is subject to change (see issue #42877)
2   --> $DIR/feature-gate-unsized_tuple_coercion.rs:12:24
3    |
4 LL |     let _ : &(Send,) = &((),);
5    |                        ^^^^^^
6    |
7    = help: add #![feature(unsized_tuple_coercion)] to the crate attributes to enable
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0658`.