1error[E0557]: feature has been removed
2  --> $DIR/overlapping_marker_traits.rs:11:12
3   |
411 | #![feature(overlapping_marker_traits)]
5   |            ^^^^^^^^^^^^^^^^^^^^^^^^^ feature has been removed
6   |
7   = note: removed in favor of `#![feature(marker_trait_attr)]`
8
9error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Struct<_>`:
10  --> $DIR/overlapping_marker_traits.rs:16:1
11   |
1216 | #[pin_project]
13   | ^^^^^^^^^^^^^^ conflicting implementation for `Struct<_>`
14...
1523 | impl<T> Unpin for Struct<T> {}
16   | --------------------------- first implementation here
17   |
18   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)
19