rust/src/test/ui/issue-44406.stderr
John Kåre Alsaker b1d872b38e Update tests
2018-03-16 11:52:46 +01:00

18 lines
543 B
Plaintext

error: expected identifier, found keyword `true`
--> $DIR/issue-44406.rs:18:10
|
LL | foo!(true); //~ ERROR expected type, found keyword
| ^^^^ expected identifier, found keyword
error: expected type, found keyword `true`
--> $DIR/issue-44406.rs:18:10
|
LL | bar(baz: $rest)
| - help: did you mean to use `;` here?
...
LL | foo!(true); //~ ERROR expected type, found keyword
| ^^^^ expecting a type here because of type ascription
error: aborting due to 2 previous errors