summary refs log tree commit diff
path: root/src/test/compile-fail/derived-errors
AgeCommit message (Collapse)AuthorLines
2017-12-14Move compile-fail tests with NOTE/HELP annotations to UIVadim Petrochenkov-67/+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-10-02Improve error message and snippet for "did you mean `x`"Gavin Baker-1/+1
- Fixes #36164 - Part of #35233 - handles unknown fields - uses UI-style tests - update all related tests (cfail, ui, incremental)
2016-08-09updated unit testhank-der-hafenarbeiter-0/+1
2016-04-12fix various error messagesNiko Matsakis-1/+0
2016-04-12move regr test into same directoryNiko Matsakis-0/+67
2016-04-12Suppress fallback and ambiguity errorsNiko Matsakis-0/+54
If the infcx has observed other errors, then suppress both default type parameter fallback (which can be unreliable, as the full constraint set is not available) and errors related to unresovled variables (annoyingly, integer type variables cannot currently be unified with error, so that has to be a separate mechanism). Also add a flag to `infcx` to allow us to independently indicate when we have observed an error and hence should trigger this suppression mode.