21 lines
777 B
Text
21 lines
777 B
Text
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`.
|