rust/src/test
Yuki Okushi 2e8ffed861
Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez
Comment out unused error codes and add description for E0316

I have added an extended description of `E0316` and commented out a bunch of unused error codes to make clear the fact that they are no longer in use. You can check for yourself with
```shell
for ec in                                                \
    E0314 E0315   E0473 E0474 E0475   E0479 E0480 E0481  \
    E0483 E0484 E0485 E0486 E0487 E0488 E0489
do
    if [ ! -z "`grep -r $ec compiler/* --exclude-dir=rustc_error_codes`" ]
    then
        echo $ec
        false
    fi
done
```
i.e. these error codes appear nowhere in the compiler code and thus cannot be emitted.

r? ```@GuillaumeGomez```
2021-06-08 13:26:36 +09:00
..
assembly Auto merge of #79608 - alessandrod:bpf, r=nagisa 2021-06-06 01:02:32 +00:00
auxiliary
codegen Auto merge of #79608 - alessandrod:bpf, r=nagisa 2021-06-06 01:02:32 +00:00
codegen-units Remove redundant ignore-tidy-linelength annotations 2021-04-03 22:30:20 +02:00
debuginfo Respond to review feedback 2021-06-02 10:23:12 -04:00
incremental Auto merge of #85331 - cjgillot:dirty-dancing, r=Aaron1011 2021-06-01 23:02:52 +00:00
mir-opt Revert "Update mir opt tests" 2021-06-07 10:25:32 +02:00
pretty Add test for pretty printing anonymous types 2021-05-24 00:05:46 -05:00
run-make Add first cut of functionality for #58713: support for #[link(kind = "raw-dylib")]. 2021-06-04 18:01:35 -07:00
run-make-fulldeps Auto merge of #85810 - bjorn3:further_driver_cleanup, r=varkor 2021-06-07 02:30:24 +00:00
run-pass-valgrind
rustdoc Auto merge of #85457 - jyn514:remove-doc-include, r=GuillaumeGomez 2021-06-05 03:36:26 +00:00
rustdoc-gui Rollup merge of #86095 - GuillaumeGomez:search-description-codeblock, r=jsha 2021-06-08 13:26:35 +09:00
rustdoc-js Add test for primitive search 2021-02-01 15:56:51 +01:00
rustdoc-js-std Add search index test for primitive types 2021-01-27 10:05:06 +01:00
rustdoc-json Rename span to source 2021-03-24 19:44:23 +00:00
rustdoc-ui Auto merge of #84863 - ABouttefeux:libtest, r=m-ou-se 2021-06-06 09:13:59 +00:00
rustfix
ui Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez 2021-06-08 13:26:36 +09:00
ui-fulldeps Show macro name in 'this error originates in macro' message 2021-05-12 19:03:06 -04:00
COMPILER_TESTS.md