summaryrefslogtreecommitdiffstats
path: root/tests/ui/layout/issue-84108.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/layout/issue-84108.stderr')
-rw-r--r--tests/ui/layout/issue-84108.stderr24
1 files changed, 21 insertions, 3 deletions
diff --git a/tests/ui/layout/issue-84108.stderr b/tests/ui/layout/issue-84108.stderr
index 5ad450bed..3a02e73f9 100644
--- a/tests/ui/layout/issue-84108.stderr
+++ b/tests/ui/layout/issue-84108.stderr
@@ -30,7 +30,7 @@ LL | const BAR: (&Path, [u8], usize) = ("hello", [], 42);
= note: only the last element of a tuple may have a dynamically sized type
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
- --> $DIR/issue-84108.rs:13:13
+ --> $DIR/issue-84108.rs:14:13
|
LL | static BAZ: ([u8], usize) = ([], 0);
| ^^^^^^^^^^^^^ doesn't have a size known at compile-time
@@ -38,7 +38,25 @@ LL | static BAZ: ([u8], usize) = ([], 0);
= help: the trait `Sized` is not implemented for `[u8]`
= note: only the last element of a tuple may have a dynamically sized type
-error: aborting due to 4 previous errors
+error[E0308]: mismatched types
+ --> $DIR/issue-84108.rs:9:45
+ |
+LL | const BAR: (&Path, [u8], usize) = ("hello", [], 42);
+ | ^^ expected `[u8]`, found `[_; 0]`
+ |
+ = note: expected slice `[u8]`
+ found array `[_; 0]`
+
+error[E0308]: mismatched types
+ --> $DIR/issue-84108.rs:14:30
+ |
+LL | static BAZ: ([u8], usize) = ([], 0);
+ | ^^ expected `[u8]`, found `[_; 0]`
+ |
+ = note: expected slice `[u8]`
+ found array `[_; 0]`
+
+error: aborting due to 6 previous errors
-Some errors have detailed explanations: E0277, E0412.
+Some errors have detailed explanations: E0277, E0308, E0412.
For more information about an error, try `rustc --explain E0277`.