about summary refs log tree commit diff
path: root/src/test/ui/rust-2018/async-ident.fixed
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2018-09-11we now successfully warn about `async` in macro invocationsNiko Matsakis-1/+3
2018-08-29Generalize `async_idents` to all new keywordsAlex Crichton-1/+1
This commit generalizes the existing `async_idents` lint to easily encompass other identifiers that will be keywords in future editions. The new lint is called `keyword_idents` and the old `async_idents` lint is registered as renamed to this new lint. As a proof of concept the `try` keyword was added to this list as it looks to be listed as a keyword in the 2018 edition only. The `await` keyword was not added as it's not listed as a keyword yet. Closes #53077
2018-08-20Removed `raw_identifiers` feature gate.Alexander Regueiro-1/+0
2018-07-18Make `async_idents` allow-by-defaultOliver Schneider-1/+2
2018-07-17Make `async_idents` an edition incompat lintOliver Schneider-3/+58
2018-07-14Lint the use of async as an identifierOliver Schneider-0/+32