about summary refs log tree commit diff
path: root/src/test/ui/destructuring-assignment/underscore-range-expr-gating.stderr
blob: a5ed761a01c33f31df6fa9deae7e4f8654ebb1cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0658]: destructuring assignments are unstable
  --> $DIR/underscore-range-expr-gating.rs:7:5
   |
LL |     _;
   |     ^
   |
   = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information
   = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable

error[E0658]: destructuring assignments are unstable
  --> $DIR/underscore-range-expr-gating.rs:9:15
   |
LL |     S { x: 5, .. };
   |               ^^
   |
   = note: see issue #71126 <https://github.com/rust-lang/rust/issues/71126> for more information
   = help: add `#![feature(destructuring_assignment)]` to the crate attributes to enable

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0658`.