aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unstable-features/overlapping_marker_traits.stderr
blob: 91aaf6caf765aa9c37f5bbea19927267d08b8c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0557]: feature has been removed
  --> $DIR/overlapping_marker_traits.rs:11:12
   |
11 | #![feature(overlapping_marker_traits)]
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^ feature has been removed
   |
   = note: removed in favor of `#![feature(marker_trait_attr)]`

error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Struct<_>`:
  --> $DIR/overlapping_marker_traits.rs:16:1
   |
16 | #[pin_project]
   | ^^^^^^^^^^^^^^ conflicting implementation for `Struct<_>`
...
23 | impl<T> Unpin for Struct<T> {}
   | --------------------------- first implementation here
   |
   = note: this error originates in a derive macro (in Nightly builds, run with -Z macro-backtrace for more info)