]> git.lizzy.rs Git - rust.git/blob - src/test/ui/json-bom-plus-crlf-multifile.stderr
Rollup merge of #65809 - roblabla:eficall-abi, r=nagisa
[rust.git] / src / test / ui / json-bom-plus-crlf-multifile.stderr
1 {"message":"mismatched types","code":{"code":"E0308","explanation":"
2 This error occurs when the compiler was unable to infer the concrete type of a
3 variable. It can occur for several cases, the most common of which is a
4 mismatch in the expected type that the compiler inferred for a variable's
5 initializing expression, and the actual type explicitly assigned to the
6 variable.
7
8 For example:
9
10 ```compile_fail,E0308
11 let x: i32 = \"I am not a number!\";
12 //     ~~~   ~~~~~~~~~~~~~~~~~~~~
13 //      |             |
14 //      |    initializing expression;
15 //      |    compiler infers type `&str`
16 //      |
17 //    type `i32` assigned to variable `x`
18 ```
19 "},"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 `std::string::String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected type `std::string::String`
20    found type `{integer}`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"try using a conversion method","code":null,"level":"help","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":null,"suggested_replacement":"1.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
21 "}
22 {"message":"mismatched types","code":{"code":"E0308","explanation":"
23 This error occurs when the compiler was unable to infer the concrete type of a
24 variable. It can occur for several cases, the most common of which is a
25 mismatch in the expected type that the compiler inferred for a variable's
26 initializing expression, and the actual type explicitly assigned to the
27 variable.
28
29 For example:
30
31 ```compile_fail,E0308
32 let x: i32 = \"I am not a number!\";
33 //     ~~~   ~~~~~~~~~~~~~~~~~~~~
34 //      |             |
35 //      |    initializing expression;
36 //      |    compiler infers type `&str`
37 //      |
38 //    type `i32` assigned to variable `x`
39 ```
40 "},"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 `std::string::String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected type `std::string::String`
41    found type `{integer}`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"try using a conversion method","code":null,"level":"help","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":null,"suggested_replacement":"1.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
42 "}
43 {"message":"mismatched types","code":{"code":"E0308","explanation":"
44 This error occurs when the compiler was unable to infer the concrete type of a
45 variable. It can occur for several cases, the most common of which is a
46 mismatch in the expected type that the compiler inferred for a variable's
47 initializing expression, and the actual type explicitly assigned to the
48 variable.
49
50 For example:
51
52 ```compile_fail,E0308
53 let x: i32 = \"I am not a number!\";
54 //     ~~~   ~~~~~~~~~~~~~~~~~~~~
55 //      |             |
56 //      |    initializing expression;
57 //      |    compiler infers type `&str`
58 //      |
59 //    type `i32` assigned to variable `x`
60 ```
61 "},"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 `std::string::String`, found integer","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected type `std::string::String`
62    found type `{integer}`","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"try using a conversion method","code":null,"level":"help","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":null,"suggested_replacement":"1.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
63 "}
64 {"message":"mismatched types","code":{"code":"E0308","explanation":"
65 This error occurs when the compiler was unable to infer the concrete type of a
66 variable. It can occur for several cases, the most common of which is a
67 mismatch in the expected type that the compiler inferred for a variable's
68 initializing expression, and the actual type explicitly assigned to the
69 variable.
70
71 For example:
72
73 ```compile_fail,E0308
74 let x: i32 = \"I am not a number!\";
75 //     ~~~   ~~~~~~~~~~~~~~~~~~~~
76 //      |             |
77 //      |    initializing expression;
78 //      |    compiler infers type `&str`
79 //      |
80 //    type `i32` assigned to variable `x`
81 ```
82 "},"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 `std::string::String`, found ()","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"expected type `std::string::String`
83    found type `()`","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"$DIR/json-bom-plus-crlf-multifile-aux.rs:25:22: error[E0308]: mismatched types
84 "}
85 {"message":"aborting due to 4 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to 4 previous errors
86 "}