2019-10-17 08:54:37 +00:00
|
|
|
error[E0658]: use of unstable library feature 'structural_match'
|
|
|
|
--> $DIR/feature-gate.rs:29:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-10-17 08:54:37 +00:00
|
|
|
LL | impl std::marker::StructuralPartialEq for Foo { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #31434 <https://github.com/rust-lang/rust/issues/31434> for more information
|
2019-07-09 09:32:08 +00:00
|
|
|
= help: add `#![feature(structural_match)]` to the crate attributes to enable
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-10-17 08:54:37 +00:00
|
|
|
error[E0658]: use of unstable library feature 'structural_match'
|
|
|
|
--> $DIR/feature-gate.rs:31:6
|
|
|
|
|
|
|
|
|
LL | impl std::marker::StructuralEq for Foo { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 12:07:02 +00:00
|
|
|
= note: see issue #31434 <https://github.com/rust-lang/rust/issues/31434> for more information
|
2019-10-17 08:54:37 +00:00
|
|
|
= help: add `#![feature(structural_match)]` to the crate attributes to enable
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|