about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-13407.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-24/+0
2021-11-25On type mismatch caused by assignment, point at assigneeEsteban Küber-8/+2
* Do not emit unnecessary E0308 after E0070 * Show fewer errors on `while let` missing `let` * Hide redundant E0308 on `while let` missing `let` * Point at binding definition when possible on invalid assignment * do not point at closure twice * do not suggest `if let` for literals in lhs * account for parameter types
2020-09-02pretty: trim paths of unique symbolsDan Aloni-1/+1
If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not.
2020-08-30Suggest `if let x = y` when encountering `if x = y`Esteban Küber-6/+6
Detect potential cases where `if let` was meant but `let` was left out. Fix #44990.
2020-03-22Normalize wording of privacy access labelsEsteban Küber-1/+1
2020-01-16resolve: Point at the private item definitions in privacy errorsVadim Petrochenkov-1/+7
2019-12-23Add span information to `ExprKind::Assign`varkor-2/+2
2019-12-23Improve invalid assignment errorvarkor-2/+4
2019-11-18Remove E0308 note when primary label has all infoEsteban Küber-3/+0
2019-11-18Specific labels when referring to "expected" and "found" typesEsteban Küber-2/+2
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-1/+1
2018-12-31Improve type mismatch error messagesYuning Zhang-1/+1
Replace "integral variable" with "integer" and replace "floating-point variable" with "floating-point number" to make the message less confusing.
2018-12-25Remove licensesMark Rousskov-3/+3
2018-10-28resolve: More precise spans for privacy errorsVadim Petrochenkov-2/+2
2018-08-14Merged migrated compile-fail tests and ui tests. Fixes #46841.David Wood-0/+25