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