2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: auto traits are experimental and possibly buggy
|
2020-11-22 21:54:31 -06:00
|
|
|
--> $DIR/feature-gate-auto-traits.rs:6:1
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | auto trait AutoDummyTrait {}
|
2017-12-06 02:27:47 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-02-07 06:07:02 -06:00
|
|
|
= note: see issue #13231 <https://github.com/rust-lang/rust/issues/13231> for more information
|
2020-11-22 21:54:31 -06:00
|
|
|
= help: add `#![feature(auto_traits)]` to the crate attributes to enable
|
2017-12-06 02:27:47 -06:00
|
|
|
|
2019-04-10 18:40:12 -05:00
|
|
|
error[E0658]: negative trait bounds are not yet fully implemented; use marker types for now
|
2020-11-22 21:54:31 -06:00
|
|
|
--> $DIR/feature-gate-auto-traits.rs:9:6
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2019-01-02 08:14:24 -06:00
|
|
|
LL | impl !AutoDummyTrait for DummyStruct {}
|
2020-03-04 18:15:23 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-12-06 02:27:47 -06:00
|
|
|
|
|
2020-01-17 13:34:25 -06:00
|
|
|
= note: see issue #68318 <https://github.com/rust-lang/rust/issues/68318> for more information
|
2020-01-09 04:56:38 -06:00
|
|
|
= help: add `#![feature(negative_impls)]` to the crate attributes to enable
|
2017-12-06 02:27:47 -06:00
|
|
|
|
2017-12-04 16:55:14 -06:00
|
|
|
error: aborting due to 2 previous errors
|
2017-12-06 02:27:47 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|