about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-8767.rs
AgeCommit message (Collapse)AuthorLines
2018-07-15Move some `compile-fail` tests to `ui`Esteban Küber-15/+0
2017-01-12resolve: Do not use "resolve"/"resolution" in error messagesVadim Petrochenkov-1/+1
2016-12-26More systematic error reporting in path resolutionVadim Petrochenkov-1/+1
2016-02-19Show candidates for names not in scopeVlad Ureche-1/+1
This commit adds functionality that allows the name resolution pass to search for entities (traits/types/enums/structs) by name, in order to show recommendations along with the errors. For now, only E0405 and E0412 have suggestions attached, as per the request in bug #21221, but it's likely other errors can also benefit from the ability to generate suggestions.
2015-04-09Remove `ignore-tidy-linelength` from tests that no longer need itLuke Gallagher-2/+0
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2015-02-24rustc: use partially resolved definitions to replace the `T::A` hack.Eduard Burtescu-1/+1
2014-11-30Adjust some error messages to start with a lowercase letter and not finish ↵P1start-1/+1
with a full stop
2014-09-28Cleanup error messages for anonymous impl for types not declared in the ↵Andrew Poelstra-0/+18
current module Followup to RFC 57. Fixes #7607 Fixes #8767 Fixes #12729 Fixes #15060