about summary refs log tree commit diff
path: root/src/test/ui/suggestions/auxiliary
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-128/+0
2022-07-11Do not mention private Self types from other cratesMichael Goulet-0/+11
2022-06-25Fix span issues in object safety suggestionsMichael Goulet-0/+6
2022-03-28Remove duplicated and unused test filesCaio-9/+0
2021-06-02Add test for ref suggestions in macros.Mara Bos-0/+18
2021-02-18Add regression testÖmer Sinan Ağacan-0/+9
2019-07-20tests: Add minimal reproduction of #61963.David Wood-0/+81
This commit adds a reproduction of the error reported in servo which demonstrates the current, incorrect behaviour. Co-authored-by: Rémy Rakić <remy.rakic@gmail.com>
2019-03-18filter suggestions from extern preludeAndy Russell-0/+3
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-14Merged migrated compile-fail tests and ui tests. Fixes #46841.David Wood-0/+19
2018-07-18Implement existential typesOliver Schneider-47/+0
2018-06-21Account for bindings with types and in crate macrosEsteban Küber-0/+14
2018-05-11rustc: Include semicolon when removing `extern crate`Alex Crichton-0/+11
Currently the lint for removing `extern crate` suggests removing `extern crate` most of the time, but the rest of the time it suggest replacing it with `use crate_name`. Unfortunately though when spliced into the original code you're replacing extern crate foo; with use foo which is syntactically invalid! This commit ensure that the trailing semicolon is included in rustc's suggestion to ensure that the code continues to compile afterwards.
2017-11-08Fix help for duplicated names: `extern crate (...) as (...)`Esteban Küber-0/+22
On the case of duplicated names caused by an `extern crate` statement with a rename, don't include the inline suggestion, instead using a span label with only the text to avoid incorrect rust code output.