]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/types.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / types.stderr
CommitLineData
f20569fa
XL
1error: casting `i32` to `i64` may become silently lossy if you later change the type
2 --> $DIR/types.rs:14:22
3 |
4LL | let c_i64: i64 = c as i64;
5 | ^^^^^^^^ help: try: `i64::from(c)`
6 |
7 = note: `-D clippy::cast-lossless` implied by `-D warnings`
8
9error: aborting due to previous error
10