|
1 | | -The left-hand side of an assignment operator must be a place expression. A |
2 | | -place expression represents a memory location and can be a variable (with |
3 | | -optional namespacing), a dereference, an indexing expression or a field |
4 | | -reference. |
| 1 | +An assignment operator was used on a non-place expression. |
5 | 2 |
|
6 | | -More details can be found in the [Expressions] section of the Reference. |
7 | | - |
8 | | -[Expressions]: https://doc.rust-lang.org/reference/expressions.html#places-rvalues-and-temporaries |
9 | | - |
10 | | -Now, we can go further. Here are some erroneous code examples: |
| 3 | +Erroneous code examples: |
11 | 4 |
|
12 | 5 | ```compile_fail,E0070 |
13 | 6 | struct SomeStruct { |
14 | 7 | x: i32, |
15 | | - y: i32 |
| 8 | + y: i32, |
16 | 9 | } |
17 | 10 |
|
18 | | -const SOME_CONST : i32 = 12; |
| 11 | +const SOME_CONST: i32 = 12; |
19 | 12 |
|
20 | 13 | fn some_other_func() {} |
21 | 14 |
|
22 | 15 | fn some_function() { |
23 | | - SOME_CONST = 14; // error : a constant value cannot be changed! |
24 | | - 1 = 3; // error : 1 isn't a valid place! |
25 | | - some_other_func() = 4; // error : we cannot assign value to a function! |
26 | | - SomeStruct.x = 12; // error : SomeStruct a structure name but it is used |
27 | | - // like a variable! |
| 16 | + SOME_CONST = 14; // error: a constant value cannot be changed! |
| 17 | + 1 = 3; // error: 1 isn't a valid place! |
| 18 | + some_other_func() = 4; // error: we cannot assign value to a function! |
| 19 | + SomeStruct::x = 12; // error: SomeStruct a structure name but it is used |
| 20 | + // like a variable! |
28 | 21 | } |
29 | 22 | ``` |
30 | 23 |
|
| 24 | +The left-hand side of an assignment operator must be a place expression. A |
| 25 | +place expression represents a memory location and can be a variable (with |
| 26 | +optional namespacing), a dereference, an indexing expression or a field |
| 27 | +reference. |
| 28 | + |
| 29 | +More details can be found in the [Expressions] section of the Reference. |
| 30 | + |
| 31 | +[Expressions]: https://doc.rust-lang.org/reference/expressions.html#places-rvalues-and-temporaries |
| 32 | + |
31 | 33 | And now let's give working examples: |
32 | 34 |
|
33 | 35 | ``` |
34 | 36 | struct SomeStruct { |
35 | 37 | x: i32, |
36 | | - y: i32 |
| 38 | + y: i32, |
37 | 39 | } |
38 | | -let mut s = SomeStruct {x: 0, y: 0}; |
| 40 | +let mut s = SomeStruct { x: 0, y: 0 }; |
39 | 41 |
|
40 | 42 | s.x = 3; // that's good ! |
41 | 43 |
|
|
0 commit comments