rust/src/test/ui/union
Felix Rabe 88e9af0375 Fix doc link
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-17 14:10:11 +02:00
..
union-const-eval.rs Rename must-compile-successfully into compile-pass 2018-04-13 23:28:03 +02:00
union-derive-eq.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
union-derive-eq.stderr update tests 2018-03-14 00:53:24 +01:00
union-fields-1.rs Move compile-fail tests with NOTE/HELP annotations to UI 2017-12-14 23:23:07 +03:00
union-fields-1.stderr Update UI tests 2018-02-26 20:24:02 +03:00
union-fields-2.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
union-fields-2.stderr Reduce diagnostic verbosity by removing labels 2018-03-19 19:59:34 -07:00
union-sized-field.rs Fix typo in error message E0277 2018-07-10 23:10:13 +02:00
union-sized-field.stderr Fix doc link 2018-07-17 14:10:11 +02:00
union-suggest-field.rs Remove NOTE/HELP annotations from UI tests 2017-12-14 23:26:39 +03:00
union-suggest-field.stderr update tests 2018-03-14 00:53:24 +01:00