aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unstable-features/marker_trait_attr.stderr
blob: 9b3ec57ea48bdc41e410d492b844419864d539e8 (plain)
1
2
3
4
5
6
7
8
9
10
error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Struct<_>`:
  --> $DIR/marker_trait_attr.rs:12:1
   |
12 | #[pin_project] //~ ERROR E0119
   | ^^^^^^^^^^^^^^ conflicting implementation for `Struct<_>`
...
19 | 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)