mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
395 B
Text
16 lines
395 B
Text
error: assignment to temporary
|
|
--> $DIR/temporary_assignment.rs:29:5
|
|
|
|
|
29 | Struct { field: 0 }.field = 1;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::temporary-assignment` implied by `-D warnings`
|
|
|
|
error: assignment to temporary
|
|
--> $DIR/temporary_assignment.rs:30:5
|
|
|
|
|
30 | (0, 0).0 = 1;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|