summaryrefslogtreecommitdiffstats
path: root/src/test/ui/marker_trait_attr/region-overlap.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/marker_trait_attr/region-overlap.stderr')
-rw-r--r--src/test/ui/marker_trait_attr/region-overlap.stderr31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/test/ui/marker_trait_attr/region-overlap.stderr b/src/test/ui/marker_trait_attr/region-overlap.stderr
new file mode 100644
index 000000000..6631fe987
--- /dev/null
+++ b/src/test/ui/marker_trait_attr/region-overlap.stderr
@@ -0,0 +1,31 @@
+error[E0283]: type annotations needed: cannot satisfy `(&'static (), &'a ()): A`
+ --> $DIR/region-overlap.rs:5:10
+ |
+LL | impl<'a> A for (&'static (), &'a ()) {}
+ | ^
+ |
+note: multiple `impl`s satisfying `(&'static (), &'a ()): A` found
+ --> $DIR/region-overlap.rs:5:1
+ |
+LL | impl<'a> A for (&'static (), &'a ()) {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | impl<'a> A for (&'a (), &'static ()) {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error[E0283]: type annotations needed: cannot satisfy `(&'a (), &'static ()): A`
+ --> $DIR/region-overlap.rs:6:10
+ |
+LL | impl<'a> A for (&'a (), &'static ()) {}
+ | ^
+ |
+note: multiple `impl`s satisfying `(&'a (), &'static ()): A` found
+ --> $DIR/region-overlap.rs:5:1
+ |
+LL | impl<'a> A for (&'static (), &'a ()) {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | impl<'a> A for (&'a (), &'static ()) {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0283`.