]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/indexing-requires-a-uint.stderr
Rollup merge of #92959 - asquared31415:test-non-fn-help, r=estebank
[rust.git] / src / test / ui / indexing-requires-a-uint.stderr
index 3152dec30a0e6cf4b613b5387f394bd591ccc515..24f42f22f37df661cd86629998e175b888af1ea4 100644 (file)
@@ -16,7 +16,7 @@ LL |     bar::<isize>(i);  // i should not be re-coerced back to an isize
 help: you can convert a `usize` to an `isize` and panic if the converted value doesn't fit
    |
 LL |     bar::<isize>(i.try_into().unwrap());  // i should not be re-coerced back to an isize
-   |                  ^^^^^^^^^^^^^^^^^^^^^
+   |                   ++++++++++++++++++++
 
 error: aborting due to 2 previous errors