about summary refs log tree commit diff
path: root/src/test/ui/suggestions/str-array-assignment.stderr
AgeCommit message (Collapse)AuthorLines
2018-07-18Implement existential typesOliver Schneider-49/+0
2018-07-17Fix doc linkFelix Rabe-1/+1
The link for comparison: - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types--sized (broken) - https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-sized (fixed) This commit is the result of (first) searching via: find src -type f -print0 | xargs -0 fgrep -l dynamically-sized-types--sized and then replacing all relevant occurrences via: find src/{libcore,test/ui} -type f -print0 | xargs -0 sed -i.bak \ s/dynamically-sized-types--sized/dynamically-sized-types-and-sized/g find src/{libcore,test/ui} -type f -name '*.bak' -print0 | xargs -0 rm (Note: Commands run on macOS 10.13 (BSD). `sed -i.bak` should work on GNU/Linux as well, but not tested.)
2018-07-10Fix typo in error message E0277Rémy Rakic-1/+1
2018-06-29Fix incorrect type mismatch label pointing at return typeEsteban Küber-3/+0
2018-06-28Provide existing ref suggestions for more E0308 errorsEsteban Küber-1/+4
2018-06-19Update message for `!Sized` typesEsteban Küber-2/+2
2018-06-19Add link to book for `Sized` errorsEsteban Küber-0/+1
2018-06-19Add message to `rustc_on_unimplemented` attributes in coreEsteban Küber-1/+1
2018-03-14update testsGuillaume Gomez-2/+2
2018-02-26Update UI testsVadim Petrochenkov-5/+5
2018-02-25Update ui testsGuillaume Gomez-0/+2
2017-12-14Remove NOTE/HELP annotations from UI testsVadim Petrochenkov-7/+7
2017-12-01Use suggestions instead of notes ref mismatchesEsteban Küber-2/+4
On type mismatch errors, use a suggestion when encountering minimal differences in type differences due to refs, instead of a note.
2017-11-27reword to "consider borrowing here: `{suggestion}`"Esteban Küber-1/+1
2017-11-25Add `compile-fail` style comments to testsEsteban Küber-7/+7
2017-11-25Suggest using slice when encountering `let x = ""[..];`Esteban Küber-0/+44