]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-8761.stderr
point at private fields in struct literal
[rust.git] / src / test / ui / issues / issue-8761.stderr
index 836520a28ef349cbfa04f6721ec522ba38ed5504..c70093bafb69bdb4fc776e2d591e45424fe1a17c 100644 (file)
@@ -7,7 +7,7 @@ LL |     A = 1i64,
 help: change the type of the numeric literal from `i64` to `isize`
    |
 LL |     A = 1isize,
-   |         ^^^^^^
+   |          ~~~~~
 
 error[E0308]: mismatched types
   --> $DIR/issue-8761.rs:5:9
@@ -18,7 +18,7 @@ LL |     B = 2u8
 help: change the type of the numeric literal from `u8` to `isize`
    |
 LL |     B = 2isize
-   |         ^^^^^^
+   |          ~~~~~
 
 error: aborting due to 2 previous errors