summaryrefslogtreecommitdiffstats
path: root/src/test/ui/cross/cross-borrow-trait.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/cross/cross-borrow-trait.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/cross/cross-borrow-trait.stderr b/src/test/ui/cross/cross-borrow-trait.stderr
new file mode 100644
index 000000000..81f309eae
--- /dev/null
+++ b/src/test/ui/cross/cross-borrow-trait.stderr
@@ -0,0 +1,14 @@
+error[E0308]: mismatched types
+ --> $DIR/cross-borrow-trait.rs:10:26
+ |
+LL | let _y: &dyn Trait = x;
+ | ---------- ^ expected `&dyn Trait`, found struct `Box`
+ | |
+ | expected due to this
+ |
+ = note: expected reference `&dyn Trait`
+ found struct `Box<dyn Trait>`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.