summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-with-generator.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coherence/coherence-with-generator.stderr')
-rw-r--r--src/test/ui/coherence/coherence-with-generator.stderr24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/ui/coherence/coherence-with-generator.stderr b/src/test/ui/coherence/coherence-with-generator.stderr
new file mode 100644
index 000000000..804bc1c3a
--- /dev/null
+++ b/src/test/ui/coherence/coherence-with-generator.stderr
@@ -0,0 +1,24 @@
+error[E0119]: conflicting implementations of trait `Trait` for type `Wrapper<OpaqueGenerator>`
+ --> $DIR/coherence-with-generator.rs:16:1
+ |
+LL | impl Trait for Wrapper<OpaqueGenerator> {}
+ | --------------------------------------- first implementation here
+LL |
+LL | impl<T: Sync> Trait for Wrapper<T> {}
+ | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Wrapper<OpaqueGenerator>`
+
+error: cannot implement trait on type alias impl trait
+ --> $DIR/coherence-with-generator.rs:14:24
+ |
+LL | impl Trait for Wrapper<OpaqueGenerator> {}
+ | ^^^^^^^^^^^^^^^
+ |
+note: type alias impl trait defined here
+ --> $DIR/coherence-with-generator.rs:3:24
+ |
+LL | type OpaqueGenerator = impl Sized;
+ | ^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0119`.