aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unstable-features/overlapping_marker_traits.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/unstable-features/overlapping_marker_traits.stderr')
-rw-r--r--tests/ui/unstable-features/overlapping_marker_traits.stderr8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ui/unstable-features/overlapping_marker_traits.stderr b/tests/ui/unstable-features/overlapping_marker_traits.stderr
index 91aaf6c..ffa50c7 100644
--- a/tests/ui/unstable-features/overlapping_marker_traits.stderr
+++ b/tests/ui/unstable-features/overlapping_marker_traits.stderr
@@ -6,13 +6,13 @@ error[E0557]: 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
+error[E0119]: conflicting implementations of trait `std::marker::Unpin` for type `Struct<_>`
+ --> $DIR/overlapping_marker_traits.rs:17:1
|
-16 | #[pin_project]
+17 | #[pin_project]
| ^^^^^^^^^^^^^^ conflicting implementation for `Struct<_>`
...
-23 | impl<T> Unpin for Struct<T> {}
+24 | 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)