summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coercion/coercion-slice.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/coercion/coercion-slice.stderr')
-rw-r--r--src/test/ui/coercion/coercion-slice.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/ui/coercion/coercion-slice.stderr b/src/test/ui/coercion/coercion-slice.stderr
new file mode 100644
index 000000000..42dc954ff
--- /dev/null
+++ b/src/test/ui/coercion/coercion-slice.stderr
@@ -0,0 +1,13 @@
+error[E0308]: mismatched types
+ --> $DIR/coercion-slice.rs:4:21
+ |
+LL | let _: &[i32] = [0];
+ | ------ ^^^
+ | | |
+ | | expected `&[i32]`, found array `[{integer}; 1]`
+ | | help: consider borrowing here: `&[0]`
+ | expected due to this
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.