summary refs log tree commit diff
path: root/src/test/ui/unsized-enum2.stderr
AgeCommit message (Collapse)AuthorLines
2018-07-17Fix doc linkFelix Rabe-20/+20
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-20/+20
2018-06-23add `dyn` to display of dynamic (trait) type namesZack M. Davis-16/+16
The `dyn Trait` syntax was stabilized in 199ee327. Resolves #49277.
2018-06-19Update message for `!Sized` typesEsteban Küber-40/+40
2018-06-19Add link to book for `Sized` errorsEsteban Küber-0/+20
2018-06-19Add message to `rustc_on_unimplemented` attributes in coreEsteban Küber-56/+56
2018-05-10Fix tuple struct field spansEsteban Küber-10/+10
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-20/+20
2018-02-25Update ui testsGuillaume Gomez-0/+1
2017-12-14Move compile-fail tests with NOTE/HELP annotations to UIVadim Petrochenkov-0/+190