2017-10-09 20:02:17 +03:00
|
|
|
error: expected identifier, found keyword `true`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-44406.rs:8:10
|
2017-10-09 20:02:17 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo!(true);
|
2018-01-06 14:43:20 -08:00
|
|
|
| ^^^^ expected identifier, found keyword
|
2019-10-23 22:20:58 -07:00
|
|
|
|
|
2022-01-27 14:53:39 -08:00
|
|
|
help: escape `true` to use it as an identifier
|
2018-12-30 11:52:15 -08:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo!(r#true);
|
2022-01-27 14:53:39 -08:00
|
|
|
| ++
|
2017-10-09 20:02:17 +03:00
|
|
|
|
2021-09-07 17:45:16 +00:00
|
|
|
error: invalid `struct` delimiters or `fn` call arguments
|
|
|
|
--> $DIR/issue-44406.rs:3:9
|
2017-10-09 20:02:17 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | bar(baz: $rest)
|
2021-09-07 17:45:16 +00:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-10-09 20:02:17 +03:00
|
|
|
...
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | foo!(true);
|
2021-10-14 13:28:28 -05:00
|
|
|
| ---------- in this macro invocation
|
2021-09-07 17:45:16 +00:00
|
|
|
|
|
|
|
|
= note: this error originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
help: if `bar` is a struct, use braces as delimiters
|
|
|
|
|
|
2023-01-15 17:49:34 +01:00
|
|
|
LL | bar { baz: $rest }
|
|
|
|
| ~ ~
|
2021-09-07 17:45:16 +00:00
|
|
|
help: if `bar` is a function, use the arguments directly
|
2019-07-17 11:40:36 -07:00
|
|
|
|
|
2021-09-07 17:45:16 +00:00
|
|
|
LL - bar(baz: $rest)
|
2021-09-20 15:39:16 +00:00
|
|
|
LL + bar(: $rest)
|
2022-06-08 20:34:57 +03:00
|
|
|
|
|
2017-10-09 20:02:17 +03:00
|
|
|
|
2018-03-15 16:13:47 +01:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|