2017-10-09 17:02:17 +00:00
|
|
|
error: expected identifier, found keyword `true`
|
|
|
|
--> $DIR/issue-44406.rs:18:10
|
|
|
|
|
|
2017-11-20 12:13:27 +00:00
|
|
|
18 | foo!(true); //~ ERROR expected type, found keyword
|
2018-01-06 22:43:20 +00:00
|
|
|
| ^^^^ expected identifier, found keyword
|
2017-10-09 17:02:17 +00:00
|
|
|
|
|
|
|
error: expected type, found keyword `true`
|
|
|
|
--> $DIR/issue-44406.rs:18:10
|
|
|
|
|
|
|
|
|
13 | bar(baz: $rest)
|
|
|
|
| - help: did you mean to use `;` here?
|
|
|
|
...
|
2017-11-20 12:13:27 +00:00
|
|
|
18 | foo!(true); //~ ERROR expected type, found keyword
|
2017-10-09 17:02:17 +00:00
|
|
|
| ^^^^ expecting a type here because of type ascription
|
|
|
|
|