about summary refs log tree commit diff
path: root/src/test/ui/rust-2018/async-ident-allowed.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-17/+0
2022-10-01bless ui testsMaybe Waffle-2/+2
2021-06-25Address PR feedbackRyan Levick-1/+1
2021-06-25Change how edition based future compatibility warnings are handledRyan Levick-1/+1
2020-01-24Normalise notes with the/isvarkor-1/+1
2019-07-17normalize use of backticks in compiler messages for librustc/lintSamy Kacimi-1/+1
https://github.com/rust-lang/rust/issues/60532
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-2/+2
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/+1
2018-07-26Tweak the raw_identifiers lints in 2018Alex Crichton-0/+17
* Enable the `raw_identifiers` feature automatically in the 2018 preview * Only emit lint warnings if the `raw_identifiers` feature is activated cc rust-lang/cargo#5783