1error[E0557]: feature has been removed
2  --> tests/ui/unstable-features/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 `Unpin` for type `Struct<_>`
10  --> tests/ui/unstable-features/overlapping_marker_traits.rs:17:1
11   |
1217 | #[pin_project]
13   | ^^^^^^^^^^^^^^ conflicting implementation for `Struct<_>`
14...
1524 | impl<T> Unpin for Struct<T> {}
16   | --------------------------- first implementation here
17   |
18   = note: this error originates in the derive macro `::pin_project::__private::__PinProjectInternalDerive` (in Nightly builds, run with -Z macro-backtrace for more info)
19