about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-7813.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-14/+0
2022-07-01Show source of ambiguity in a few more placesMichael Goulet-1/+1
2022-06-02add new `emit_inference_failure_err`lcnr-4/+7
2019-06-01Account for cases where we can find the type arg name, but the local name is `_`Esteban Küber-1/+1
2019-06-01review comment: tweak wordingEsteban Küber-2/+2
2019-05-31Tweak wordingEsteban Küber-1/+1
2019-05-31Alternative wording for inference failureEsteban Küber-2/+2
2019-05-31Add more detail to type inference errorEsteban Küber-2/+2
When encountering code where type inference fails, add more actionable information: ``` fn main() { let foo = Vec::new(); } ``` ``` error[E0282]: type annotations needed for `std::vec::Vec<_>` --> $DIR/vector-no-ann.rs:2:16 | LL | let foo = Vec::new(); | --- ^^^^^^^^ cannot infer type for `T` | | | consider giving `foo` the type `std::vec::Vec<_>` with the type parameter `T` specified ``` We still need to modify type printing to optionally accept a `TypeVariableTable` in order to properly print `std::vec::Vec<T>`. CC #25633.
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-1/+1
2018-08-14Merged migrated compile-fail tests and ui tests. Fixes #46841.David Wood-0/+11