2020-01-11 00:19:09 +00:00
|
|
|
error: comparison operators cannot be chained
|
2018-12-27 03:07:00 +03:00
|
|
|
--> $DIR/issue-40396.rs:2:20
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2018-12-16 20:23:27 +03:00
|
|
|
LL | (0..13).collect<Vec<i32>>();
|
2020-03-09 20:21:37 -07:00
|
|
|
| ^ ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2019-09-29 19:07:26 -07:00
|
|
|
LL | (0..13).collect::<Vec<i32>>();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2017-03-13 19:07:47 -07:00
|
|
|
|
2020-01-11 00:19:09 +00:00
|
|
|
error: comparison operators cannot be chained
|
2020-08-31 10:24:37 -07:00
|
|
|
--> $DIR/issue-40396.rs:5:8
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2018-12-16 20:23:27 +03:00
|
|
|
LL | Vec<i32>::new();
|
2020-03-09 20:21:37 -07:00
|
|
|
| ^ ^
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2019-09-30 12:36:44 -07:00
|
|
|
LL | Vec::<i32>::new();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2017-03-13 19:07:47 -07:00
|
|
|
|
2020-01-11 00:19:09 +00:00
|
|
|
error: comparison operators cannot be chained
|
2020-08-31 10:24:37 -07:00
|
|
|
--> $DIR/issue-40396.rs:8:20
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2018-12-16 20:23:27 +03:00
|
|
|
LL | (0..13).collect<Vec<i32>();
|
2020-03-09 20:21:37 -07:00
|
|
|
| ^ ^
|
2020-01-11 00:19:09 +00:00
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2017-03-13 19:07:47 -07:00
|
|
|
|
|
2019-09-29 19:07:26 -07:00
|
|
|
LL | (0..13).collect::<Vec<i32>();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2017-03-13 19:07:47 -07:00
|
|
|
|
2021-08-01 19:55:48 -05:00
|
|
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `else`, `{`, or an operator, found `,`
|
2020-08-31 10:24:37 -07:00
|
|
|
--> $DIR/issue-40396.rs:11:43
|
|
|
|
|
|
|
|
|
LL | let x = std::collections::HashMap<i128, i128>::new();
|
2021-08-01 19:55:48 -05:00
|
|
|
| ^ expected one of 8 possible tokens
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
|
LL | let x = std::collections::HashMap::<i128, i128>::new();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `,`
|
|
|
|
--> $DIR/issue-40396.rs:15:39
|
|
|
|
|
|
|
|
|
LL | std::collections::HashMap<i128, i128>::new()
|
|
|
|
| ^ expected one of 8 possible tokens
|
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
|
LL | std::collections::HashMap::<i128, i128>::new()
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `,`
|
|
|
|
--> $DIR/issue-40396.rs:20:39
|
|
|
|
|
|
|
|
|
LL | std::collections::HashMap<i128, i128>::new();
|
|
|
|
| ^ expected one of 8 possible tokens
|
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
|
LL | std::collections::HashMap::<i128, i128>::new();
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
error: expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `,`
|
|
|
|
--> $DIR/issue-40396.rs:25:39
|
|
|
|
|
|
|
|
|
LL | std::collections::HashMap<i128, i128>::new(1, 2);
|
|
|
|
| ^ expected one of 8 possible tokens
|
|
|
|
|
|
2022-01-13 15:44:17 -08:00
|
|
|
help: use `::<...>` instead of `<...>` to specify lifetime, type, or const arguments
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
|
LL | std::collections::HashMap::<i128, i128>::new(1, 2);
|
2021-06-21 19:07:19 -07:00
|
|
|
| ++
|
2020-08-31 10:24:37 -07:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-40396.rs:13:17
|
|
|
|
|
|
|
|
|
LL | let x: () = 42;
|
|
|
|
| -- ^^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-40396.rs:18:17
|
|
|
|
|
|
|
|
|
LL | let x: () = 42;
|
|
|
|
| -- ^^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-40396.rs:22:21
|
|
|
|
|
|
|
|
|
LL | let x: () = 42;
|
|
|
|
| -- ^^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-40396.rs:27:21
|
|
|
|
|
|
|
|
|
LL | let x: () = 32;
|
|
|
|
| -- ^^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error: aborting due to 11 previous errors
|
2017-03-13 19:07:47 -07:00
|
|
|
|
2020-08-31 10:24:37 -07:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|