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