about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0620.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0620.stderr')
-rw-r--r--src/test/ui/error-codes/E0620.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0620.stderr b/src/test/ui/error-codes/E0620.stderr
index 5c18afebf5a..310dddc26f0 100644
--- a/src/test/ui/error-codes/E0620.stderr
+++ b/src/test/ui/error-codes/E0620.stderr
@@ -1,13 +1,13 @@
 error[E0620]: cast to unsized type: `&[usize; 2]` as `[usize]`
   --> $DIR/E0620.rs:12:16
    |
-12 |     let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
+LL |     let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
    |                ^^^^^^^^^^^^^^^^^^^^^^^^
    |
 help: consider using an implicit coercion to `&[usize]` instead
   --> $DIR/E0620.rs:12:16
    |
-12 |     let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
+LL |     let _foo = &[1_usize, 2] as [usize]; //~ ERROR E0620
    |                ^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to previous error