1{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.
2
3Erroneous code examples:
4
5```compile_fail,E0308
6fn plus_one(x: i32) -> i32 {
7    x + 1
8}
9
10plus_one(\"Not a number\");
11//       ^^^^^^^^^^^^^^ expected `i32`, found `&str`
12
13if \"Not a bool\" {
14// ^^^^^^^^^^^^ expected `bool`, found `&str`
15}
16
17let x: f32 = \"Not a float\";
18//     ---   ^^^^^^^^^^^^^ expected `f32`, found `&str`
19//     |
20//     expected due to this
21```
22
23This error occurs when an expression was used in a place where the compiler
24expected an expression of a different type. It can occur in several cases, the
25most common being when calling a function and passing an argument which has a
26different type than the matching type in the function declaration.
27"},"level":"error","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":621,"byte_end":622,"line_start":17,"line_end":17,"column_start":22,"column_end":23,"is_primary":true,"text":[{"text":"    let s : String = 1;  // Error in the middle of line.","highlight_start":22,"highlight_end":23}],"label":"expected struct `String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":612,"byte_end":618,"line_start":17,"line_end":17,"column_start":13,"column_end":19,"is_primary":false,"text":[{"text":"    let s : String = 1;  // Error in the middle of line.","highlight_start":13,"highlight_end":19}],"label":"expected due to this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"try using a conversion method","code":null,"level":"help","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":622,"byte_end":622,"line_start":17,"line_end":17,"column_start":23,"column_end":23,"is_primary":true,"text":[{"text":"    let s : String = 1;  // Error in the middle of line.","highlight_start":23,"highlight_end":23}],"label":null,"suggested_replacement":".to_string()","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"$DIR/json-bom-plus-crlf-multifile-aux.rs:17:22: error[E0308]: mismatched types
28"}
29{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.
30
31Erroneous code examples:
32
33```compile_fail,E0308
34fn plus_one(x: i32) -> i32 {
35    x + 1
36}
37
38plus_one(\"Not a number\");
39//       ^^^^^^^^^^^^^^ expected `i32`, found `&str`
40
41if \"Not a bool\" {
42// ^^^^^^^^^^^^ expected `bool`, found `&str`
43}
44
45let x: f32 = \"Not a float\";
46//     ---   ^^^^^^^^^^^^^ expected `f32`, found `&str`
47//     |
48//     expected due to this
49```
50
51This error occurs when an expression was used in a place where the compiler
52expected an expression of a different type. It can occur in several cases, the
53most common being when calling a function and passing an argument which has a
54different type than the matching type in the function declaration.
55"},"level":"error","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":681,"byte_end":682,"line_start":19,"line_end":19,"column_start":22,"column_end":23,"is_primary":true,"text":[{"text":"    let s : String = 1","highlight_start":22,"highlight_end":23}],"label":"expected struct `String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":672,"byte_end":678,"line_start":19,"line_end":19,"column_start":13,"column_end":19,"is_primary":false,"text":[{"text":"    let s : String = 1","highlight_start":13,"highlight_end":19}],"label":"expected due to this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"try using a conversion method","code":null,"level":"help","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":682,"byte_end":682,"line_start":19,"line_end":19,"column_start":23,"column_end":23,"is_primary":true,"text":[{"text":"    let s : String = 1","highlight_start":23,"highlight_end":23}],"label":null,"suggested_replacement":".to_string()","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"$DIR/json-bom-plus-crlf-multifile-aux.rs:19:22: error[E0308]: mismatched types
56"}
57{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.
58
59Erroneous code examples:
60
61```compile_fail,E0308
62fn plus_one(x: i32) -> i32 {
63    x + 1
64}
65
66plus_one(\"Not a number\");
67//       ^^^^^^^^^^^^^^ expected `i32`, found `&str`
68
69if \"Not a bool\" {
70// ^^^^^^^^^^^^ expected `bool`, found `&str`
71}
72
73let x: f32 = \"Not a float\";
74//     ---   ^^^^^^^^^^^^^ expected `f32`, found `&str`
75//     |
76//     expected due to this
77```
78
79This error occurs when an expression was used in a place where the compiler
80expected an expression of a different type. It can occur in several cases, the
81most common being when calling a function and passing an argument which has a
82different type than the matching type in the function declaration.
83"},"level":"error","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":745,"byte_end":746,"line_start":23,"line_end":23,"column_start":1,"column_end":2,"is_primary":true,"text":[{"text":"1;  // Error after the newline.","highlight_start":1,"highlight_end":2}],"label":"expected struct `String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":735,"byte_end":741,"line_start":22,"line_end":22,"column_start":13,"column_end":19,"is_primary":false,"text":[{"text":"    let s : String =","highlight_start":13,"highlight_end":19}],"label":"expected due to this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"try using a conversion method","code":null,"level":"help","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":746,"byte_end":746,"line_start":23,"line_end":23,"column_start":2,"column_end":2,"is_primary":true,"text":[{"text":"1;  // Error after the newline.","highlight_start":2,"highlight_end":2}],"label":null,"suggested_replacement":".to_string()","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"$DIR/json-bom-plus-crlf-multifile-aux.rs:23:1: error[E0308]: mismatched types
84"}
85{"message":"mismatched types","code":{"code":"E0308","explanation":"Expected type did not match the received type.
86
87Erroneous code examples:
88
89```compile_fail,E0308
90fn plus_one(x: i32) -> i32 {
91    x + 1
92}
93
94plus_one(\"Not a number\");
95//       ^^^^^^^^^^^^^^ expected `i32`, found `&str`
96
97if \"Not a bool\" {
98// ^^^^^^^^^^^^ expected `bool`, found `&str`
99}
100
101let x: f32 = \"Not a float\";
102//     ---   ^^^^^^^^^^^^^ expected `f32`, found `&str`
103//     |
104//     expected due to this
105```
106
107This error occurs when an expression was used in a place where the compiler
108expected an expression of a different type. It can occur in several cases, the
109most common being when calling a function and passing an argument which has a
110different type than the matching type in the function declaration.
111"},"level":"error","spans":[{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":801,"byte_end":809,"line_start":25,"line_end":26,"column_start":22,"column_end":6,"is_primary":true,"text":[{"text":"    let s : String = (","highlight_start":22,"highlight_end":23},{"text":"    );  // Error spanning the newline.","highlight_start":1,"highlight_end":6}],"label":"expected struct `String`, found `()`","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"$DIR/json-bom-plus-crlf-multifile-aux.rs","byte_start":792,"byte_end":798,"line_start":25,"line_end":25,"column_start":13,"column_end":19,"is_primary":false,"text":[{"text":"    let s : String = (","highlight_start":13,"highlight_end":19}],"label":"expected due to this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"$DIR/json-bom-plus-crlf-multifile-aux.rs:25:22: error[E0308]: mismatched types
112"}
113{"message":"aborting due to 4 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to 4 previous errors
114"}
115