rust-lang / rust

Empowering everyone to build reliable and efficient software.
https://www.rust-lang.org
Other
97.79k stars 12.66k forks source link

opt-level: z often worse than s, sometimes worse than 3 on small files #54026

Open matthiaskrgr opened 6 years ago

matthiaskrgr commented 6 years ago

script to get sizes

#!/bin/bash

for file in `ls -c1 | grep "\.rs$"`; do
    rustc ${file} -o ${file}.default
    rustc ${file} -o ${file}.O0 -C opt-level=0
    rustc ${file} -o ${file}.O1 -C opt-level=1
    rustc ${file} -o ${file}.O2 -C opt-level=2
    rustc ${file} -o ${file}.O3 -C opt-level=3
    rustc ${file} -o ${file}.Os -C opt-level=s
    rustc ${file} -o ${file}.Oz -C opt-level=z
    echo "`du -sb ${file}.O0 | cut -f -1`,`du -sb ${file}.O1 | cut -f -1`,`du -sb ${file}.O2 | cut -f -1`,`du -sb ${file}.O3 | cut -f -1`,`du -sb ${file}.Os | cut -f -1`,`du -sb ${file}.Oz | cut -f -1`,$file" >> table.txt
done;

It seems that -C opt-level=z often fails to reduce size beyond what -C opt-level=scan do, sometimes it's even outperformed by -C opt-level=3.

sizes of binarys wrt opt level

table

| default | 1 | 2 | 3 | s | z | | |----------|---------|---------|---------|---------|---------|----------------------------------------------------------------------| | | | | | | | redundant.rs | | 4088816 | 4084352 | 4080000 | 4080000 | 4080008 | 4081232 | const-int-conversion.rs | | 4086800 | 4082680 | 4080008 | 4080008 | 4080008 | 4080072 | const-int-overflowing.rs | | 4081128 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | const-int-rotate.rs | | 4088720 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-int-sign.rs | | 4085792 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-int-wrapping.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-fn-const-eval.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-fn-method.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-fn-nested.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | const-meth-pattern.rs | | 4088904 | 4088952 | 4088472 | 4088472 | 4088472 | 4088536 | const-pattern-variant.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | consts-in-patterns.rs | | 4080824 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | const-size_of-align_of.rs | | 4081024 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | const-unsafe-fn.rs | | 4253056 | 4224840 | 4151560 | 4151560 | 4153400 | 4155264 | invalid_const_promotion.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28822.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue29927-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29927.rs | | 4081272 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33537.rs | | 4081320 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37991.rs | | 4088856 | 4083264 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48006.rs | | 4259768 | 4233536 | 4173336 | 4177432 | 4179032 | 4176968 | simd-target-feature-mixup.rs | | 4081072 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | try-from-int-error-partial-eq.rs | | 4110512 | 4102104 | 4081936 | 4081936 | 4083992 | 4084144 | futures-api.rs | | | | | | | | async-await.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | align-with-extern-c-fn.rs | | 4282096 | 4265552 | 4187848 | 4187848 | 4189920 | 4193336 | command-before-exec.rs | | | | | | | | issue-45124.rs | | 4088720 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | tool_attributes.rs | | | | | | | | try-block.rs | | 4081040 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | try-is-identifier-edition2015.rs | | 4081264 | 4081048 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-unique-type-id.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | unique-init.rs | | 4090560 | 4088552 | 4080000 | 4080000 | 4080072 | 4080928 | unique-in-vec.rs | | 4090832 | 4085560 | 4080000 | 4080000 | 4079992 | 4080216 | unique-kinds.rs | | 4094216 | 4094040 | 4088688 | 4088688 | 4088688 | 4088760 | unique-log.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080216 | unique-move-drop.rs | | 4081808 | 4081632 | 4079992 | 4079992 | 4079992 | 4080064 | unique-move.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-move-temp.rs | | 4081808 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-mutable.rs | | 4081552 | 4081552 | 4080000 | 4080000 | 4080000 | 4080072 | unique-object-move.rs | | 4089064 | 4081232 | 4080000 | 4080000 | 4080000 | 4080064 | unique-pat-2.rs | | 4106176 | 4100832 | 4093800 | 4093800 | 4093944 | 4094008 | unique-pat-3.rs | | 4088976 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | unique-pat.rs | | 4082296 | 4082112 | 4079992 | 4079992 | 4079992 | 4080064 | unique-rec.rs | | 4339472 | 4320448 | 4155016 | 4167392 | 4154048 | 4163752 | unique-send-2.rs | | 4256632 | 4252440 | 4135480 | 4139416 | 4133128 | 4141704 | unique-send.rs | | 4087288 | 4082288 | 4079992 | 4079992 | 4079992 | 4080440 | unique-swap.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | unsized2.rs | | 4081472 | 4081168 | 4080000 | 4080000 | 4080000 | 4080072 | unused-move-capture.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | unused-move.rs | | 4132296 | 4129856 | 4099880 | 4099896 | 4100192 | 4100728 | unwind-unique.rs | | | | | | | | use-macro-self.rs | | 4161648 | 4139664 | 4086280 | 4086808 | 4087472 | 4092384 | utf8_chars.rs | | 4081696 | 4081736 | 4080024 | 4080024 | 4080024 | 4080088 | variance-intersection-of-ref-and-opt-ref.rs | | 4091544 | 4088040 | 4080008 | 4080008 | 4080288 | 4080664 | variance-vec-covariant.rs | | 4086656 | 4082240 | 4079992 | 4079992 | 4079992 | 4080056 | vec-dst.rs | | 4084336 | 4083864 | 4080000 | 4080000 | 4080000 | 4080296 | vector-no-ann-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | x86stdcall2.rs | | | | | | | | z-crate-attr.rs | | 4089912 | 4085056 | 4080008 | 4080008 | 4080416 | 4080480 | traits-conditional-dispatch.rs | | 4106664 | 4101392 | 4098112 | 4098112 | 4098488 | 4098776 | typeclasses-eq-example.rs | | 4106712 | 4101440 | 4098144 | 4098144 | 4098528 | 4098816 | typeclasses-eq-example-static.rs | | 4099336 | 4084392 | 4080000 | 4080000 | 4080000 | 4080072 | type-id-higher-rank.rs | | 4082520 | 4081896 | 4080008 | 4080008 | 4080008 | 4080224 | type-param-constraints.rs | | 4099432 | 4098760 | 4092960 | 4092960 | 4092952 | 4093168 | ufcs-explicit-self.rs | | 4099112 | 4098992 | 4093264 | 4093264 | 4089168 | 4089232 | unboxed-closures-boxed.rs | | 4099672 | 4099552 | 4093800 | 4093800 | 4093800 | 4093864 | unboxed-closures-call-sugar-object-autoderef.rs | | 4099640 | 4099520 | 4093776 | 4093776 | 4093776 | 4093840 | unboxed-closures-call-sugar-object.rs | | 4082440 | 4082256 | 4080008 | 4080008 | 4080008 | 4080072 | uniq-self-in-mut-slot.rs | | 4082120 | 4081912 | 4080000 | 4080000 | 4080000 | 4080216 | unique-assign-copy.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080216 | unique-assign-drop.rs | | 4082248 | 4082072 | 4080000 | 4080000 | 4080008 | 4080416 | unique-assign-generic.rs | | 4081808 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-assign.rs | | 4082304 | 4082128 | 4080008 | 4080008 | 4080008 | 4080072 | unique-autoderef-field.rs | | 4090112 | 4086664 | 4080008 | 4080008 | 4080080 | 4080456 | unique-autoderef-index.rs | | 4090768 | 4085496 | 4079992 | 4079992 | 4079992 | 4081400 | unique-cmp.rs | | 4081352 | 4081168 | 4080008 | 4080008 | 4080008 | 4080072 | unique-containing-tag.rs | | 4081344 | 4081160 | 4080000 | 4080000 | 4080000 | 4080064 | unique-create.rs | | 4082120 | 4081920 | 4080008 | 4080008 | 4080008 | 4080224 | unique-decl-init-copy.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-decl-init.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080064 | unique-decl-move.rs | | 4081808 | 4081632 | 4079992 | 4079992 | 4080000 | 4080064 | unique-deref.rs | | 4082376 | 4081168 | 4080000 | 4080000 | 4080000 | 4080072 | unique-destructure.rs | | 4088984 | 4085528 | 4080000 | 4080000 | 4080000 | 4080376 | unique-drop-complex.rs | | 4082368 | 4082192 | 4080000 | 4080000 | 4080000 | 4080072 | unique-fn-arg-move.rs | | 4082392 | 4082192 | 4080000 | 4080000 | 4080000 | 4080216 | unique-fn-arg-mut.rs | | 4082360 | 4082184 | 4079992 | 4079992 | 4080816 | 4080960 | unique-fn-arg.rs | | 4082720 | 4082544 | 4080000 | 4080000 | 4080000 | 4080888 | unique-fn-ret.rs | | 4106240 | 4100896 | 4093800 | 4093800 | 4093944 | 4094008 | unique-in-tag.rs | | 4118840 | 4117832 | 4080672 | 4080672 | 4081136 | 4082320 | unique-in-vec-copy.rs | | 4086280 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | small-enum-range-edge.rs | | | | | | | | stack-probes-lto.rs | | | | | | | | stack-probes.rs | | 4080960 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | std-sync-right-kind-impls.rs | | 4354720 | 4287464 | 4121088 | 4120800 | 4116152 | 4122088 | sync-send-iterators-in-libcollections.rs | | 4111848 | 4091944 | 4085688 | 4085688 | 4085688 | 4086120 | sync-send-iterators-in-libcore.rs | | 4305880 | 4294064 | 4165192 | 4168992 | 4162664 | 4167024 | task-comm-0.rs | | 4429128 | 4406000 | 4203304 | 4223312 | 4198256 | 4206216 | task-comm-10.rs | | 4346760 | 4334952 | 4166072 | 4181936 | 4164416 | 4169872 | task-comm-11.rs | | 4142224 | 4136168 | 4111864 | 4111864 | 4107928 | 4112632 | task-comm-12.rs | | 4252776 | 4250296 | 4140072 | 4147952 | 4141376 | 4148592 | task-comm-13.rs | | 4311080 | 4297616 | 4160880 | 4168896 | 4163168 | 4167968 | task-comm-14.rs | | 4288736 | 4275680 | 4147488 | 4151392 | 4145032 | 4149184 | task-comm-15.rs | | 4129224 | 4121872 | 4098760 | 4098752 | 4098912 | 4099448 | task-comm-17.rs | | 4142040 | 4134992 | 4107416 | 4107416 | 4107576 | 4112264 | task-comm-1.rs | | 4344832 | 4321208 | 4171120 | 4175016 | 4169560 | 4178784 | task-comm-3.rs | | 4326632 | 4301344 | 4159200 | 4171096 | 4162416 | 4168264 | task-comm-7.rs | | 4310344 | 4289544 | 4160528 | 4168360 | 4162264 | 4166648 | task-comm-9.rs | | 4129368 | 4122504 | 4098720 | 4098728 | 4098912 | 4099440 | task-life-0.rs | | 4293496 | 4277672 | 4147952 | 4151728 | 4145440 | 4149816 | task-spawn-move-and-copy.rs | | 2765656 | 2765584 | 2764232 | 2764232 | 2764232 | 2764456 | thin-lto-global-allocator.rs | | 4142336 | 4135352 | 4111744 | 4115848 | 4107840 | 4112528 | threads.rs | | 4322040 | 4309504 | 4155672 | 4167968 | 4158592 | 4164080 | trait-bounds-in-arc.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-bounds-on-structs-and-enums.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num0.rs | | 4082568 | 4081368 | 4080008 | 4080008 | 4080008 | 4080376 | trait-object-generics.rs | | 4082720 | 4082720 | 4080032 | 4080032 | 4080032 | 4080424 | regions-close-over-type-parameter-successfully.rs | | 4107680 | 4098928 | 4080008 | 4080008 | 4080080 | 4081328 | regions-dependent-addr-of.rs | | 4100632 | 4096072 | 4081376 | 4081376 | 4081616 | 4082704 | regions-early-bound-trait-param.rs | | 4081992 | 4081720 | 4080008 | 4080008 | 4080016 | 4080080 | regions-escape-into-other-fn.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | regions-fn-subtyping.rs | | 4082392 | 4082216 | 4080008 | 4080008 | 4080008 | 4080080 | regions-infer-borrow-scope.rs | | 4081936 | 4081192 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-borrow-scope-within-loop-ok.rs | | 4082144 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | regions-lifetime-nonfree-late-bound.rs | | 4090744 | 4086016 | 4080048 | 4080048 | 4080048 | 4080248 | regions-relate-bound-regions-on-closures-to-inference-variables.rs | | 4269440 | 4239632 | 4146016 | 4150760 | 4153576 | 4155352 | running-with-no-runtime.rs | | 4082096 | 4082688 | 4079992 | 4079992 | 4080240 | 4080576 | self-impl.rs | | 4082744 | 4082520 | 4080016 | 4080016 | 4080016 | 4080080 | self-in-mut-slot-default-method.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | self-in-typedefs.rs | | 4089928 | 4085272 | 4080000 | 4080000 | 4080544 | 4080704 | self-re-assign.rs | | 4147960 | 4142208 | 4116968 | 4116976 | 4117128 | 4113568 | sendfn-spawn-with-fn-arg.rs | | 4406376 | 4374240 | 4181040 | 4201136 | 4175448 | 4186696 | send-resource.rs | | | | | | | | sepcomp-lib-lto.rs | | 4081152 | 4081152 | 4080408 | 4080408 | 4080408 | 4080480 | signal-alternate-stack-cleanup.rs | | 4140064 | 4115080 | 4080008 | 4080008 | 4080008 | 4080072 | simd-intrinsic-float-math.rs | | 4115368 | 4111336 | 4110472 | 4080008 | 4110472 | 4110544 | simd-intrinsic-float-minmax.rs | | 4133528 | 4116096 | 4111056 | 4111056 | 4111056 | 4115224 | simd-intrinsic-generic-reduction.rs | | 4082496 | 4082096 | 4080216 | 4080216 | 4080216 | 4080288 | slice.rs | | | | | | | | method-self-arg-aux1.rs | | | | | | | | method-self-arg-aux2.rs | | 4082432 | 4081120 | 4080240 | 4080240 | 4080240 | 4080312 | method-self-arg.rs | | 4087352 | 4081872 | 4080496 | 4080496 | 4080496 | 4080560 | method-self-arg-trait.rs | | 4116424 | 4103480 | 4080016 | 4080016 | 4080472 | 4081408 | method-two-trait-defer-resolution-2.rs | | 4080808 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | method-two-traits-distinguished-via-where-clause.rs | | 4086952 | 4082632 | 4079992 | 4079992 | 4080000 | 4081160 | move-1-unique.rs | | 4082288 | 4082112 | 4079992 | 4079992 | 4079992 | 4080056 | move-2.rs | | 4082296 | 4082120 | 4080000 | 4080000 | 4080000 | 4080064 | move-2-unique.rs | | 4088840 | 4083800 | 4080000 | 4080000 | 4080000 | 4080960 | move-3-unique.rs | | 4082352 | 4082168 | 4079992 | 4079992 | 4079992 | 4080056 | move-4.rs | | 4082368 | 4082184 | 4080000 | 4080000 | 4080000 | 4080064 | move-4-unique.rs | | 4090672 | 4087144 | 4080864 | 4080864 | 4080864 | 4081240 | move-arg-2.rs | | 4090688 | 4087160 | 4080880 | 4080880 | 4080880 | 4081256 | move-arg-2-unique.rs | | 4146736 | 4140016 | 4111504 | 4111504 | 4107568 | 4112424 | moves-based-on-type-capture-clause.rs | | 4082616 | 4081424 | 4080008 | 4080008 | 4080008 | 4080224 | mut-function-arguments.rs | | 4099136 | 4099136 | 4093304 | 4093304 | 4093304 | 4093376 | new-box.rs | | 4134016 | 4109592 | 4081784 | 4081784 | 4081888 | 4087488 | nullable-pointer-iotareduction.rs | | 4099280 | 4099216 | 4093504 | 4093504 | 4093504 | 4093568 | object-one-type-two-traits.rs | | 4092576 | 4097936 | 4080712 | 4080712 | 4081152 | 4081432 | objects-owned-object-borrowed-method-headerless.rs | | 4082072 | 4081696 | 4080016 | 4080016 | 4080016 | 4080080 | objects-owned-object-owned-method.rs | | 4087064 | 4082616 | 4080008 | 4080008 | 4080008 | 4080072 | operator-overloading.rs | | 4086552 | 4082136 | 4080088 | 4080000 | 4080328 | 4080840 | output-slot-variants.rs | | 4171520 | 4141568 | 4081136 | 4081136 | 4089096 | 4094376 | overloaded-autoderef.rs | | 4116592 | 4103952 | 4080904 | 4080904 | 4081632 | 4082440 | overloaded-index-assoc-list.rs | | 4087232 | 4082864 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-index-autoderef.rs | | 4081536 | 4081600 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-index-in-field.rs | | 4086144 | 4082016 | 4080000 | 4080000 | 4080000 | 4080064 | overloaded-index.rs | | 4085584 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | packed-struct-optimized-enum.rs | | 4142408 | 4130688 | 4101264 | 4101256 | 4101624 | 4102160 | panic-handler-chain.rs | | 4195704 | 4185272 | 4125128 | 4125384 | 4131880 | 4128984 | panic-handler-flail-wildly.rs | | 4141744 | 4129864 | 4100656 | 4100656 | 4101064 | 4101584 | panic-handler-set-twice.rs | | 4151576 | 4139744 | 4102448 | 4102448 | 4102896 | 4107664 | panic-recover-propagate.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | parallel-codegen-closures.rs | | | | | | | | paths-in-macro-invocations.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | pure-sum.rs | | 4194048 | 4159904 | 4097688 | 4097552 | 4093816 | 4102976 | range_inclusive.rs | | 4099216 | 4099040 | 4093376 | 4093376 | 4093376 | 4093440 | rcvr-borrowed-to-region.rs | | 4157584 | 4117056 | 4085448 | 4088976 | 4081800 | 4082168 | realloc-16687.rs | | 4098648 | 4098376 | 4088768 | 4088768 | 4088768 | 4088832 | regions-borrow-at.rs | | 4081888 | 4081616 | 4080000 | 4080000 | 4080000 | 4080072 | regions-borrow-uniq.rs | | 4239240 | 4197944 | 4108992 | 4109616 | 4111688 | 4113760 | issue-3563-3.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3609.rs | | 4123104 | 4123168 | 4122536 | 4122536 | 4122536 | 4122600 | issue-3753.rs | | 4099816 | 4099816 | 4093768 | 4093768 | 4093840 | 4093912 | issue-3794.rs | | | | | | | | issue-38226.rs | | | | | | | | issue-38715.rs | | 4081336 | 4081160 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3878.rs | | 4115632 | 4108080 | 4085400 | 4089392 | 4085768 | 4082344 | issue-40883.rs | | 4123656 | 4115384 | 4089136 | 4089312 | 4089256 | 4089976 | issue-4333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44005.rs | | 4081480 | 4081640 | 4079992 | 4079992 | 4079992 | 4080176 | issue-4759.rs | | 4089144 | 4085472 | 4080768 | 4080768 | 4080872 | 4081232 | issue-48962.rs | | 4081944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51907.rs | | 4081768 | 4081688 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5192.rs | | 4081760 | 4081928 | 4079992 | 4079992 | 4079992 | 4080064 | issue-52169.rs | | | | | | | | issue-52557.rs | | 4093176 | 4089152 | 4088584 | 4088584 | 4088584 | 4088656 | issue-53333.rs | | 4108272 | 4104256 | 4098656 | 4098656 | 4098656 | 4098960 | issue-5666.rs | | 4082104 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5718.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5884.rs | | 4081560 | 4081296 | 4079992 | 4079992 | 4079992 | 4080056 | issue-6318.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6557.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | issue-7673-cast-generically-implemented-trait.rs | | 4419056 | 4376896 | 4186568 | 4198224 | 4189576 | 4197272 | issue-8827.rs | | 4081840 | 4081528 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9129.rs | | 4089000 | 4085384 | 4079992 | 4079992 | 4080160 | 4080760 | issue-9382.rs | | 4298424 | 4290472 | 4153240 | 4156928 | 4151208 | 4159496 | ivec-tag.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | kindck-implicit-close-over-mut-var.rs | | 4082472 | 4082496 | 4080016 | 4080016 | 4080432 | 4080576 | kindck-owned-trait-contains-1.rs | | 4099112 | 4094816 | 4093040 | 4093040 | 4093112 | 4093376 | last-use-is-capture.rs | | 4081424 | 4081248 | 4080008 | 4080008 | 4080008 | 4080072 | leak-unique-as-tydesc.rs | | 4094520 | 4094344 | 4093024 | 4093024 | 4093024 | 4093088 | let-assignability.rs | | 4081424 | 4081248 | 4080152 | 4080152 | 4080152 | 4080296 | list.rs | | | | | | | | macro-at-most-once-rep.rs | | | | | | | | macro-comma-support.rs | | 4090464 | 4084904 | 4080000 | 4080000 | 4080000 | 4080824 | macro-first-set.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pub-matcher.rs | | 4086792 | 4082560 | 4080008 | 4080008 | 4080080 | 4080432 | match-implicit-copy-unique.rs | | 4088904 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-range.rs | | 4081888 | 4081704 | 4080000 | 4080000 | 4080000 | 4080136 | match-reassign.rs | | 4098576 | 4094304 | 4088768 | 4088768 | 4088768 | 4088832 | match-unique-bind.rs | | 4081816 | 4081592 | 4080016 | 4080016 | 4080016 | 4080320 | match-value-binding-in-guard-3291.rs | | 4096688 | 4090080 | 4080632 | 4080496 | 4080608 | 4081448 | method-mut-self-modifies-mut-slice-lvalue.rs | | 4081472 | 4081296 | 4079992 | 4079992 | 4079992 | 4080064 | issue-10682.rs | | 4081408 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-10767.rs | | 4090280 | 4084832 | 4079992 | 4079992 | 4081520 | 4081664 | issue-10802.rs | | 4089504 | 4084224 | 4080416 | 4080416 | 4080416 | 4080704 | issue-11552.rs | | 4080440 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-13259-windows-tcb-trash.rs | | 4317632 | 4294320 | 4176616 | 4176512 | 4179536 | 4186176 | issue-13304.rs | | 4093424 | 4088504 | 4080928 | 4080928 | 4081072 | 4081424 | issue-13323.rs | | 4082048 | 4081288 | 4079992 | 4079992 | 4079992 | 4080064 | issue-14399.rs | | 4315224 | 4290088 | 4178120 | 4178256 | 4180912 | 4184040 | issue-14456.rs | | 4099040 | 4098864 | 4092792 | 4092792 | 4092792 | 4093168 | issue-15571.rs | | 4091312 | 4087368 | 4079992 | 4079992 | 4079992 | 4080896 | issue-15734.rs | | 4093960 | 4084608 | 4079992 | 4079992 | 4081312 | 4081528 | issue-15763.rs | | 4088832 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | issue-15881-model-lexer-dotdotdot.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-16668.rs | | 4087936 | 4083712 | 4079992 | 4079992 | 4081072 | 4081624 | issue-16739.rs | | 4090488 | 4085216 | 4080952 | 4080952 | 4081104 | 4081168 | issue-16774.rs | | 4129264 | 4122632 | 4099520 | 4099688 | 4099704 | 4100424 | issue-17322.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-17351.rs | | 4213512 | 4198576 | 4142368 | 4142368 | 4147864 | 4149224 | issue-20091.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-20454.rs | | 4081408 | 4081224 | 4079992 | 4079992 | 4079992 | 4080200 | issue-20616.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21562.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22346.rs | | 4081368 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22577.rs | | 4081744 | 4081656 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2288.rs | | 4081808 | 4081480 | 4079992 | 4079992 | 4079992 | 4080336 | issue-2633-2.rs | | 4081632 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2708.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2718.rs | | 4081768 | 4081768 | 4079992 | 4079992 | 4079992 | 4080208 | issue-2734.rs | | 4081768 | 4081768 | 4079992 | 4079992 | 4079992 | 4080208 | issue-2735.rs | | 4094472 | 4094472 | 4088912 | 4088912 | 4088912 | 4089056 | issue-2935.rs | | 4081400 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3121.rs | | 4081808 | 4081624 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3290.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33264.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33903.rs | | 4094288 | 4094096 | 4088872 | 4088872 | 4088776 | 4088840 | issue-3447.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34784.rs | | 4832352 | 4597272 | 4154264 | 4149984 | 4158680 | 4180688 | dropck_legal_cycles.rs | | 4082352 | 4081920 | 4079992 | 4079992 | 4079992 | 4080056 | dst-index.rs | | 4110464 | 4089016 | 4085704 | 4085704 | 4085704 | 4082120 | dst-struct.rs | | 4093528 | 4088648 | 4081696 | 4081696 | 4081696 | 4082064 | dst-trait.rs | | 4110456 | 4089008 | 4085696 | 4085696 | 4085696 | 4082112 | dst-tuple.rs | | | | | | | | edition-keywords-2015-2015.rs | | | | | | | | edition-keywords-2015-2018.rs | | | | | | | | edition-keywords-2018-2015.rs | | | | | | | | edition-keywords-2018-2018.rs | | 4089024 | 4081272 | 4080184 | 4080184 | 4080184 | 4080248 | enum-nullable-simplifycfg-misopt.rs | | 4099568 | 4095080 | 4086912 | 4086912 | 4087112 | 4087688 | env-home-dir.rs | | 4101256 | 4092328 | 4085208 | 4085208 | 4085504 | 4086232 | env-null-vars.rs | | 4137248 | 4123448 | 4086664 | 4086664 | 4087864 | 4084744 | existential_type.rs | | 4089168 | 4082752 | 4080008 | 4080008 | 4080008 | 4080072 | explicit-self-generic.rs | | 4082544 | 4082264 | 4080008 | 4080008 | 4080008 | 4080152 | explicit-self-objects-uniq.rs | | 4087232 | 4082768 | 4080000 | 4080000 | 4080000 | 4080920 | explicit-self.rs | | 4106688 | 4101376 | 4093736 | 4093736 | 4093880 | 4094024 | expr-block-generic-unique1.rs | | 4089816 | 4084472 | 4080008 | 4080008 | 4080008 | 4080224 | expr-block-generic-unique2.rs | | 4081816 | 4081632 | 4080000 | 4080000 | 4080000 | 4080072 | expr-block-unique.rs | | 4081888 | 4081704 | 4080000 | 4080000 | 4080000 | 4080064 | expr-if-unique.rs | | 4089592 | 4084232 | 4080008 | 4080008 | 4080008 | 4080224 | expr-match-generic-unique1.rs | | 4089832 | 4084472 | 4080008 | 4080008 | 4080008 | 4080224 | expr-match-generic-unique2.rs | | 4089432 | 4081712 | 4080000 | 4080000 | 4080000 | 4080064 | expr-match-unique.rs | | | | | | | | extern-call-scrub.rs | | 4090280 | 4086112 | 4080592 | 4080592 | 4080592 | 4080976 | foreign-fn-linkname.rs | | 4096216 | 4087296 | 4080000 | 4080000 | 4080992 | 4081000 | fsu-moves-and-copies.rs | | 4082064 | 4081800 | 4080008 | 4080008 | 4080008 | 4080224 | func-arg-incomplete-pattern.rs | | 4082440 | 4082104 | 4080000 | 4080000 | 4080000 | 4080216 | func-arg-ref-pattern.rs | | 4099424 | 4099216 | 4093360 | 4093360 | 4093360 | 4093504 | generic-alias-unique.rs | | 4082456 | 4082280 | 4080008 | 4080008 | 4080008 | 4080072 | generic-exterior-unique.rs | | 4082144 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | generic-extern-mangle.rs | | 4094176 | 4093992 | 4088576 | 4088576 | 4088584 | 4088648 | generic-fn-unique.rs | | 4082552 | 4082552 | 4080000 | 4080000 | 4080000 | 4080360 | generic-object.rs | | 4081704 | 4081592 | 4080192 | 4080192 | 4080168 | 4080384 | generic-recursive-tag.rs | | 4081432 | 4081232 | 4079992 | 4079992 | 4079992 | 4080136 | generic-tag.rs | | 4082368 | 4082192 | 4080000 | 4080000 | 4080000 | 4080064 | generic-unique.rs | | 4575608 | 4519176 | 4222288 | 4242360 | 4227376 | 4242048 | hashmap-memory.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | hrtb-precedence-of-plus.rs | | 4323168 | 4255160 | 4214048 | 4214792 | 4210976 | 4203712 | ifmt.rs | | 4129224 | 4121856 | 4098760 | 4098752 | 4098920 | 4099440 | init-large-type.rs | | 4096208 | 4087792 | 4085696 | 4085648 | 4085768 | 4085832 | intrinsic-atomics.rs | | 4091600 | 4096816 | 4082368 | 4082224 | 4082376 | 4082848 | autoref-intermediate-types-issue-3585.rs | | 4081504 | 4081280 | 4080024 | 4080024 | 4080024 | 4080240 | cancel-clean-via-immediate-rvalue-ref.rs | | 4212544 | 4107608 | 4080896 | 4080896 | 4081312 | 4082376 | cast-rfc0401.rs | | | | | | | | cci_borrow.rs | | 4122928 | 4120960 | 4098032 | 4098032 | 4098120 | 4098648 | child-outlives-parent.rs | | | | | | | | class-cast-to-trait-cross-crate-2.rs | | 4136504 | 4124968 | 4099176 | 4099176 | 4100136 | 4100864 | class-separate-impl.rs | | 4081792 | 4081416 | 4080008 | 4080008 | 4080008 | 4080072 | cleanup-arm-conditional.rs | | 4087128 | 4081768 | 4080768 | 4080768 | 4080768 | 4080864 | cleanup-rvalue-during-if-and-while.rs | | 4164872 | 4150712 | 4100112 | 4100120 | 4100680 | 4101800 | cleanup-rvalue-temp-during-incomplete-alloc.rs | | 4130400 | 4128320 | 4099536 | 4099544 | 4099728 | 4100264 | clone-with-exterior.rs | | 4100352 | 4100328 | 4093776 | 4093776 | 4093776 | 4093840 | close-over-big-then-small-data.rs | | 4162224 | 4116408 | 4082240 | 4082240 | 4084672 | 4085264 | coerce-expect-unsized.rs | | 4301704 | 4289864 | 4164984 | 4168656 | 4162584 | 4166688 | comm.rs | | 4121808 | 4081920 | 4080240 | 4080240 | 4080240 | 4080304 | const-block.rs | | 4087312 | 4087376 | 4085592 | 4085592 | 4081496 | 4081568 | const-endianess.rs | | | | | | | | core-run-destroy.rs | | | | | | | | crate-method-reexport-grrrrrrr.rs | | 4091384 | 4091232 | 4081432 | 4081280 | 4081440 | 4081992 | c-stack-returning-int64.rs | | 4217480 | 4203584 | 4151224 | 4151224 | 4152472 | 4154072 | default-alloc-error-hook.rs | | 4099904 | 4094864 | 4088576 | 4088576 | 4088576 | 4088640 | deref-lval.rs | | 4081328 | 4081152 | 4079984 | 4079984 | 4079984 | 4080056 | deref.rs | | 4100112 | 4087672 | 4080928 | 4080928 | 4081064 | 4081256 | deriving-associated-types.rs | | 4088680 | 4084704 | 4080000 | 4080000 | 4080000 | 4081320 | deriving-default-box.rs | | 4135904 | 4121704 | 4086264 | 4086264 | 4087376 | 4088888 | deriving-hash.rs | | 4081376 | 4081168 | 4080008 | 4080008 | 4080008 | 4080072 | drop-on-empty-block-exit.rs | | 4082256 | 4082160 | 4080008 | 4080008 | 4080008 | 4080072 | drop-struct-as-object.rs | | 4324472 | 4299712 | 4159136 | 4170968 | 4161928 | 4167104 | drop-trait-enum.rs | | 4100328 | 4100304 | 4093768 | 4093768 | 4093768 | 4093832 | alignment-gep-tup-like-1.rs | | 4101704 | 4098456 | 4080680 | 4080680 | 4081976 | 4082384 | associated-types-doubleendediterator-object.rs | | 4080536 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | associated-types-nested-projections.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | attr-shebang.rs | | 4082328 | 4082024 | 4080008 | 4080008 | 4080008 | 4080704 | autoderef-method-on-trait.rs | | 4082064 | 4082040 | 4080008 | 4080008 | 4080008 | 4080392 | autoderef-method-priority.rs | | 4082016 | 4081624 | 4080000 | 4080000 | 4080000 | 4080064 | autoderef-method.rs | | 4082848 | 4082920 | 4080016 | 4080016 | 4080024 | 4080880 | autoderef-method-twice-but-not-thrice.rs | | 4082216 | 4081824 | 4080008 | 4080008 | 4080008 | 4080216 | autoderef-method-twice.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080016 | 4080080 | where-clause-region-outlives.rs | | | | | | | | where-clauses-cross-crate.rs | | 4081344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | where-clauses-lifetimes.rs | | 4093584 | 4089552 | 4088768 | 4088768 | 4088776 | 4088840 | where-clauses-method.rs | | 4095368 | 4095536 | 4088768 | 4088768 | 4088768 | 4089184 | where-clauses.rs | | 4080528 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | where-clauses-unboxed-closures.rs | | 4081608 | 4081552 | 4080480 | 4080480 | 4080480 | 4080544 | where-for-self.rs | | 4101480 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | while-cont.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | while-flow-graph.rs | | 4080928 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | while-label.rs | | 4108736 | 4101000 | 4085352 | 4085072 | 4081432 | 4081784 | while-let.rs | | 4101744 | 4100264 | 4093608 | 4093608 | 4093752 | 4093816 | while-loop-constraints-2.rs | | 4109256 | 4100096 | 4080200 | 4080840 | 4081048 | 4081256 | while-prelude-drop.rs | | 4093568 | 4093480 | 4092848 | 4092848 | 4092848 | 4092912 | while.rs | | 4102504 | 4102832 | 4093368 | 4093368 | 4093368 | 4093576 | while-with-break.rs | | 4147448 | 4104656 | 4080000 | 4080000 | 4080000 | 4080064 | wrapping-int-api.rs | | 4101928 | 4097608 | 4081392 | 4081392 | 4081736 | 4082136 | writealias.rs | | 4114304 | 4115024 | 4094272 | 4094152 | 4094528 | 4095512 | write-fmt-errors.rs | | 4256256 | 4214040 | 4104408 | 4104416 | 4102144 | 4108624 | wrong-hashset-issue-42918.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | x86stdcall.rs | | | | | | | | xcrate-address-insignificant.rs | | | | | | | | xcrate-associated-type-defaults.rs | | | | | | | | xcrate_generic_fn_nested_return.rs | | | | | | | | xcrate-static-addresses.rs | | | | | | | | xcrate-trait-lifetime-param.rs | | | | | | | | xcrate-unit-struct.rs | | 4142064 | 4136016 | 4107768 | 4111856 | 4107928 | 4112616 | yield1.rs | | 4093520 | 4093488 | 4092928 | 4092928 | 4088832 | 4092992 | yield2.rs | | 4138304 | 4117712 | 4080544 | 4080544 | 4080664 | 4080808 | zero-sized-binary-heap-push.rs | | 4201736 | 4165736 | 4086264 | 4086384 | 4087704 | 4087904 | zero-sized-btreemap-insert.rs | | 4108480 | 4093488 | 4080328 | 4080328 | 4080720 | 4080984 | zero-sized-linkedlist-push.rs | | 4080952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | zero_sized_subslice_match.rs | | 4080792 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | zero-sized-tuple-struct.rs | | 4144336 | 4108448 | 4080736 | 4080736 | 4081336 | 4083264 | zero-sized-vec-deque-push.rs | | 4118896 | 4102128 | 4080272 | 4080272 | 4080408 | 4080568 | zero-sized-vec-push.rs | | 4081848 | 4081792 | 4080752 | 4080752 | 4080752 | 4080824 | zero-size-type-destructors.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unnamed_argument_mode.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | unreachable-code-1.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unreachable-code.rs | | 4081016 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unsafe-coercion.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unsafe-fn-called-from-unsafe-blk.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unsafe-fn-called-from-unsafe-fn.rs | | 4081360 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unsafe-pointer-assignability.rs | | 4127896 | 4111296 | 4081000 | 4081000 | 4081304 | 4081896 | unsized3.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | unsized.rs | | 4268432 | 4219712 | 4106224 | 4106216 | 4112448 | 4116136 | unsized-tuple-impls.rs | | 4317256 | 4302624 | 4166760 | 4174656 | 4164992 | 4169552 | unwind-resource.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | use-crate-name-alias.rs | | 4080488 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | use-import-export.rs | | | | | | | | use_inline_dtor.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | use-keyword-2.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | use-mod.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | use-nested-groups.rs | | 1322320 | 1322256 | 1322256 | 1322256 | 1322256 | 1322256 | use.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080008 | 4080072 | use-trait-before-def.rs | | 4093080 | 4089048 | 4088480 | 4088480 | 4088480 | 4088552 | use-uninit-match2.rs | | 4093072 | 4089048 | 4088480 | 4088480 | 4088480 | 4088552 | use-uninit-match.rs | | | | | | | | using-target-feature-unstable.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | utf8-bom.rs | | 4090512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | utf8_idents.rs | | 4112568 | 4103320 | 4093240 | 4093240 | 4093240 | 4097544 | utf8.rs | | | | | | | | variadic-ffi.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | variance-iterators-in-libcore.rs | | 4083440 | 4083120 | 4080000 | 4080000 | 4080000 | 4080208 | variant-attributes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | variant-structs-trivial.rs | | 4127096 | 4120400 | 4098288 | 4098288 | 4098496 | 4098912 | vec-concat.rs | | 4108304 | 4094000 | 4080128 | 4080128 | 4080232 | 4080752 | vec_cycle.rs | | 4108480 | 4098256 | 4080136 | 4080136 | 4080240 | 4080760 | vec_cycle_wrapped.rs | | 4085872 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | vec-fixed-length.rs | | 4107552 | 4099584 | 4080344 | 4080344 | 4080520 | 4081040 | vec-growth.rs | | 4102384 | 4102800 | 4092920 | 4092920 | 4092920 | 4093128 | vec-late-init.rs | | 4068856 | 4065296 | 1322256 | 1322256 | 1322256 | 4056152 | vec-macro-no-std.rs | | 4145744 | 4138672 | 4085936 | 4081392 | 4086960 | 4088520 | vec-macro-repeat.rs | | 4119176 | 4116840 | 4080608 | 4080608 | 4081368 | 4082032 | vec-macro-rvalue-scope.rs | | 4097648 | 4088288 | 4080008 | 4080008 | 4080208 | 4080592 | vec-macro-with-brackets.rs | | 4091912 | 4088920 | 4080616 | 4080616 | 4080712 | 4081376 | vec-macro-with-trailing-comma.rs | | 4096592 | 4084296 | 4080480 | 4080480 | 4080584 | 4081016 | vec-matching-autoslice.rs | | 4089320 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | vec-matching-fixed.rs | | 4081496 | 4081360 | 4080000 | 4080000 | 4080000 | 4080072 | vec-matching-fold.rs | | 4101912 | 4093408 | 4088752 | 4088752 | 4088752 | 4088816 | vec-matching-legal-tail-element-borrow.rs | | 4115352 | 4090520 | 4080000 | 4080000 | 4079992 | 4082576 | vec-matching.rs | | 4098136 | 4098352 | 4079992 | 4079992 | 4080192 | 4080488 | vec-push.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | vec-repeat-with-cast.rs | | 4090632 | 4090832 | 4079984 | 4079984 | 4079984 | 4081240 | vec.rs | | 4087576 | 4082672 | 4080000 | 4080000 | 4080000 | 4080720 | vec-slice-drop.rs | | 4090376 | 4086776 | 4079992 | 4079992 | 4079992 | 4080192 | vec-slice.rs | | 4096744 | 4084224 | 4080000 | 4080000 | 4080000 | 4081064 | vec-tail-matching.rs | | 4110976 | 4103696 | 4087088 | 4087088 | 4087264 | 4088128 | vec-to_str.rs | | 4081952 | 4082120 | 4080184 | 4080184 | 4080184 | 4080608 | volatile-fat-ptr.rs | | 4289032 | 4256440 | 4157728 | 4157632 | 4159256 | 4161256 | wait-forked-but-failed-child.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | warn-ctypes-inhibit.rs | | | | | | | | weak-lang-item.rs | | 4089720 | 4085712 | 4080016 | 4080016 | 4080016 | 4080328 | weak-new-uninhabited-issue-48493.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | weird-exit-code.rs | | 4168424 | 4142984 | 4105816 | 4106472 | 4106688 | 4107232 | weird-exprs.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | wf-bound-region-in-object-type.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | where-clause-bounds-inconsistency.rs | | 4080624 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | where-clause-early-bound-lifetimes.rs | | 4080512 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | where-clause-method-substituion.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | unique-decl.rs | | 4089840 | 4081432 | 4080000 | 4080000 | 4080000 | 4080072 | unique-ffi-symbols.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unique-generic-assign.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unique-match-discrim.rs | | 4145320 | 4133760 | 4100896 | 4100904 | 4101240 | 4101904 | unit-like-struct-drop-run.rs | | 4088880 | 4088944 | 4088464 | 4088464 | 4088464 | 4088536 | unit-like-struct.rs | | 4080384 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | unit.rs | | 4080816 | 4080456 | 4080048 | 4080048 | 4080048 | 4080112 | unboxed-closures-infer-arg-types-w-bound-regs-from-expected-bound.rs | | 4080936 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | unboxed-closures-infer-explicit-call-early.rs | | 4081160 | 4081128 | 4080024 | 4080024 | 4080024 | 4080096 | unboxed-closures-infer-fnmut-calling-fnmut.rs | | 4081032 | 4081016 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnmut-move.rs | | 4081008 | 4080976 | 4080008 | 4080008 | 4080016 | 4080080 | unboxed-closures-infer-fnmut.rs | | 4081304 | 4081272 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnonce-move.rs | | 4081288 | 4081256 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-infer-fnonce.rs | | 4081664 | 4081400 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-infer-kind.rs | | 4082200 | 4081424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-infer-recursive-fn.rs | | 4110144 | 4102640 | 4080688 | 4080688 | 4080896 | 4081656 | unboxed-closures-infer-upvar.rs | | 4081648 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-manual-impl.rs | | 4091936 | 4095936 | 4081912 | 4081912 | 4082560 | 4083056 | unboxed-closures-monomorphization.rs | | 4089232 | 4085536 | 4080032 | 4080032 | 4080032 | 4080312 | unboxed-closures-move-from-projection-issue-30046.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-move-mutable.rs | | 4118544 | 4116344 | 4081776 | 4081776 | 4082368 | 4083616 | unboxed-closures-move-some-upvars-in-by-ref-closure.rs | | 4082504 | 4082024 | 4080008 | 4080008 | 4080008 | 4080456 | unboxed-closures-prelude.rs | | 4081480 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | unboxed-closures-simple.rs | | 4082160 | 4081784 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-single-word-env.rs | | 4080480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-static-call-fn-once.rs | | 4081072 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-sugar-object.rs | | 4080456 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-zero-args.rs | | 4080720 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | underscore-lifetimes.rs | | 4080456 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | underscore-method-after-integer.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | unify-return-ty.rs | | 4080488 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | uninit-empty-types.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | uninstantiable-struct.rs | | 4088992 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | traits-default-method-trivial.rs | | 4088888 | 4088960 | 4088480 | 4088480 | 4088480 | 4088544 | traits-elaborate-type-region.rs | | 4080456 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | traits-impl-object-overlap-issue-23853.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22019.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22110.rs | | 4080416 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-22655.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | traits-issue-23003.rs | | 4089216 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | traits-issue-26339.rs | | 4081288 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | traits-multidispatch-infer-convert-target.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | traits-negative-impls.rs | | 4085984 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | traits-repeated-supertrait.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | transmute-non-immediate-to-immediate.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | transmute-specialization.rs | | 4081800 | 4081768 | 4080000 | 4080000 | 4080000 | 4080064 | trivial_casts.rs | | 4267728 | 4250568 | 4142896 | 4150728 | 4144464 | 4148400 | trivial-message.rs | | 4224696 | 4194024 | 4143256 | 4143176 | 4144792 | 4150944 | try-macro.rs | | 4102336 | 4093000 | 4080936 | 4080936 | 4081080 | 4081656 | try-operator-custom.rs | | 4082608 | 4082440 | 4080760 | 4080760 | 4080832 | 4080896 | try-operator-hygiene.rs | | 4146256 | 4125072 | 4091184 | 4091184 | 4088192 | 4093168 | try-operator.rs | | 4258856 | 4231224 | 4152744 | 4152760 | 4154720 | 4156720 | try-wait.rs | | 4087616 | 4083872 | 4080008 | 4080008 | 4080008 | 4081448 | tuple-index-fat-types.rs | | 4086192 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tuple-index.rs | | 4082400 | 4082296 | 4080016 | 4080016 | 4080016 | 4080080 | tuple-struct-constructor-pointer.rs | | 4094016 | 4094080 | 4093400 | 4093400 | 4093400 | 4093464 | tuple-struct-construct.rs | | 4093992 | 4094056 | 4093304 | 4093304 | 4093304 | 4093368 | tuple-struct-destructuring.rs | | 4093984 | 4093408 | 4088752 | 4088752 | 4088752 | 4088816 | tuple-struct-matching.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | tuple-struct-trivial.rs | | 4081392 | 4080392 | 4079984 | 4079984 | 4079984 | 4080048 | tup.rs | | | | | | | | two-macro-use.rs | | 4081856 | 4082024 | 4080280 | 4080280 | 4080280 | 4080648 | tydesc-name.rs | | 4124616 | 4117776 | 4080976 | 4080976 | 4081232 | 4082184 | type-ascription.rs | | 4080528 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | typeck-fn-to-unsafe-fn-ptr.rs | | 4088840 | 4083280 | 4080016 | 4080016 | 4080016 | 4080088 | typeck-macro-interaction-issue-8852.rs | | 4117288 | 4103560 | 4080984 | 4080736 | 4081192 | 4081856 | typeck_type_placeholder_1.rs | | 4092416 | 4087376 | 4080264 | 4080264 | 4081024 | 4081304 | type-id-higher-rank-2.rs | | | | | | | | typeid-intrinsic.rs | | 4081560 | 4080976 | 4080016 | 4080016 | 4080008 | 4080080 | type-infer-generalize-ty-var.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | type-in-nested-module.rs | | 4113384 | 4106400 | 4082944 | 4082944 | 4083968 | 4084768 | type-macros-hlist.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | type-macros-simple.rs | | 4081336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | type-namespace.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | type-param.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | type-params-in-for-each.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | type-ptr.rs | | 4089640 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | type-sizes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | typestate-cfg-nesting.rs | | 4080888 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | typestate-multi-decl.rs | | 4080408 | 4080472 | 4080008 | 4080008 | 4080008 | 4080072 | type-use-i1-versus-i8.rs | | 4148968 | 4128480 | 4127640 | 4127640 | 4127632 | 4127704 | u128-as-f32.rs | | 4161488 | 4109648 | 4096568 | 4096568 | 4096576 | 4097080 | u128.rs | | 4081112 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | u32-decr.rs | | 4080928 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | u8-incr-decr.rs | | 4080928 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | u8-incr.rs | | 4191264 | 4132320 | 4084968 | 4084968 | 4089800 | 4090872 | ufcs-polymorphic-paths.rs | | 4080992 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | ufcs-trait-object.rs | | 4080448 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | ufcs-type-params.rs | | 4080328 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | uint.rs | | 4093888 | 4093952 | 4093096 | 4093096 | 4093096 | 4093168 | unary-minus-suffix-inference.rs | | 4082128 | 4081760 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-all-traits.rs | | 4082000 | 4081520 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-blanket-fn-mut.rs | | 4081960 | 4081496 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-blanket-fn.rs | | 4081632 | 4081376 | 4080008 | 4080008 | 4080008 | 4080072 | unboxed-closures-by-ref.rs | | 4081576 | 4081552 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-call-fn-autoderef.rs | | 4081608 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | unboxed-closures-call-sugar-autoderef.rs | | 4103488 | 4101248 | 4081840 | 4081840 | 4081968 | 4082528 | unboxed-closures-counter-not-moved.rs | | | | | | | | unboxed-closures-cross-crate.rs | | 4080480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | unboxed-closures-direct-sugary-call.rs | | 4092376 | 4082136 | 4080256 | 4080256 | 4080256 | 4080328 | unboxed-closures-drop.rs | | 4086352 | 4082120 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-extern-fn-hr.rs | | 4082008 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | unboxed-closures-extern-fn.rs | | 4081728 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | unboxed-closures-fn-as-fnmut-and-fnonce.rs | | 4081416 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | unboxed-closures-fnmut-as-fnonce.rs | | 4093752 | 4093528 | 4088680 | 4088680 | 4088680 | 4088744 | unboxed-closures-generic.rs | | 4080744 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | unboxed-closures-infer-arg-types-from-expected-bound.rs | | 4080992 | 4080448 | 4080040 | 4080040 | 4080040 | 4080112 | unboxed-closures-infer-arg-types-from-expected-object-type.rs | | 4081464 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-default-method-bound.rs | | 4082680 | 4082352 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst3.rs | | 4081224 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-default-method-bound-subst4.rs | | | | | | | | trait-default-method-xc-2.rs | | | | | | | | trait-default-method-xc.rs | | 4080472 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | trait-false-ambiguity-where-clause-builtin-bound.rs | | 4181040 | 4160192 | 4088816 | 4092912 | 4094560 | 4096640 | trait-generic.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | trait-impl-2.rs | | | | | | | | trait-impl.rs | | 4081744 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-inheritance2.rs | | 4081776 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-auto.rs | | | | | | | | trait-inheritance-auto-xc-2.rs | | | | | | | | trait-inheritance-auto-xc.rs | | 4081544 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-call-bound-inherited2.rs | | 4081544 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-call-bound-inherited.rs | | 4081728 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-cast.rs | | 4081832 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | trait-inheritance-cast-without-call-to-supertrait.rs | | 4081584 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-cross-trait-call.rs | | | | | | | | trait-inheritance-cross-trait-call-xc.rs | | 4081952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-diamond.rs | | 4081888 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-inheritance-multiple-inheritors.rs | | 4086000 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | trait-inheritance-multiple-params.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num1.rs | | 4093600 | 4089544 | 4088776 | 4088776 | 4088776 | 4088840 | trait-inheritance-num2.rs | | 4093872 | 4089544 | 4088776 | 4088776 | 4088776 | 4088840 | trait-inheritance-num3.rs | | 4080688 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num5.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-num.rs | | 4086960 | 4082680 | 4080016 | 4080016 | 4080016 | 4080080 | trait-inheritance-overloading.rs | | 4090312 | 4084744 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-overloading-simple.rs | | | | | | | | trait-inheritance-overloading-xc-exe.rs | | 4090240 | 4084360 | 4080016 | 4080016 | 4080016 | 4080088 | trait-inheritance-self-in-supertype.rs | | 4093616 | 4093680 | 4088736 | 4088736 | 4088736 | 4088800 | trait-inheritance-self.rs | | 4081720 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-simple.rs | | 4081512 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-inheritance-static2.rs | | 4081512 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-static.rs | | 4081944 | 4081888 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-subst2.rs | | 4081760 | 4081704 | 4080008 | 4080008 | 4080008 | 4080072 | trait-inheritance-subst.rs | | 4081480 | 4081544 | 4080008 | 4080008 | 4080008 | 4080080 | trait-inheritance-visibility.rs | | 4080560 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-item-inside-macro.rs | | 4081960 | 4081544 | 4080008 | 4080008 | 4080280 | 4080352 | trait-object-auto-dedup.rs | | 4081560 | 4081320 | 4080008 | 4080008 | 4080008 | 4080072 | trait-object-exclusion.rs | | 4092024 | 4096360 | 4082248 | 4082248 | 4082248 | 4082736 | trait-object-lifetime-first.rs | | 4082296 | 4082288 | 4080016 | 4080016 | 4080016 | 4080416 | trait-object-with-lifetime-bound.rs | | 4094200 | 4094160 | 4093272 | 4093272 | 4093272 | 4093336 | trait-region-pointer-simple.rs | | | | | | | | trait-safety-ok-cc.rs | | 4081440 | 4081512 | 4080000 | 4080000 | 4080000 | 4080064 | trait-safety-ok.rs | | 4096656 | 4088672 | 4080016 | 4080016 | 4080312 | 4080520 | traits-assoc-type-in-supertrait.rs | | | | | | | | traits-conditional-model-fn.rs | | 4090808 | 4086544 | 4081512 | 4081512 | 4081512 | 4081864 | traits-default-method-macro.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | traits-default-method-mut.rs | | 4088952 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | traits-default-method-self.rs | | 4089240 | 4089592 | 4088768 | 4088768 | 4088768 | 4089152 | trait-static-method-overwriting.rs | | 4183696 | 4154688 | 4088624 | 4092760 | 4094032 | 4095456 | trait-to-str.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-where-clause-vs-impl.rs | | 4092640 | 4092800 | 4081312 | 4081312 | 4081312 | 4081904 | trait-with-bounds-default.rs | | 4094512 | 4094512 | 4093152 | 4093152 | 4089056 | 4089120 | trait-coercion-generic.rs | | 4129200 | 4122536 | 4099536 | 4099704 | 4099664 | 4100528 | trait-coercion.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | trait-composition-trivial.rs | | 4081376 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-copy-guessing.rs | | 4081480 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst2.rs | | 4081608 | 4081480 | 4080016 | 4080016 | 4080016 | 4080080 | trait-default-method-bound-subst.rs | | 4850840 | 4698096 | 4285280 | 4324776 | 4281448 | 4302168 | task-comm-16.rs | | 4272440 | 4250704 | 4146928 | 4150712 | 4144264 | 4148416 | task-comm-4.rs | | 4255592 | 4238048 | 4130248 | 4133872 | 4131688 | 4131504 | task-comm-5.rs | | 4271032 | 4248784 | 4135512 | 4139304 | 4133456 | 4142120 | task-comm-6.rs | | 4255472 | 4238608 | 4129960 | 4134024 | 4127336 | 4131456 | task-comm-chan-nil.rs | | 4204816 | 4191872 | 4112960 | 4116792 | 4114272 | 4115552 | task-stderr.rs | | 4363192 | 4337632 | 4192240 | 4196232 | 4186360 | 4196464 | tcp-stress.rs | | 4142984 | 4131168 | 4100728 | 4100736 | 4101360 | 4102216 | terminate-in-initializer.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | test-allow-dead-extern-static-no-warning.rs | | | | | | | | test-allow-fail-attr.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | test-allow-non-camel-case-variant.rs | | | | | | | | test-fn-signature-verification-for-explicit-return-type.rs | | 4088664 | 4083176 | 4080776 | 4080776 | 4080920 | 4080984 | test-main-not-dead-attr.rs | | 4088656 | 4083168 | 4080768 | 4080768 | 4080912 | 4080984 | test-main-not-dead.rs | | 4088696 | 4083216 | 4080816 | 4080816 | 4080960 | 4081024 | test-runner-hides-buried-main.rs | | 4088664 | 4083176 | 4080776 | 4080776 | 4080920 | 4080984 | test-runner-hides-main.rs | | 4068504 | 4062952 | 4056864 | 4056864 | 4061104 | 4061104 | test-runner-hides-start.rs | | | | | | | | test-should-fail-good-message.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | test-vs-cfg-test.rs | | | | | | | | thread-local-extern-static.rs | | 4080392 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | thread-local-syntax.rs | | 4145288 | 4133472 | 4100792 | 4100792 | 4101448 | 4102088 | tls-dtors-are-run-in-a-static-binary.rs | | 4150792 | 4136112 | 4102240 | 4102240 | 4103176 | 4104104 | tls-init-on-init.rs | | 4150160 | 4134472 | 4100848 | 4100848 | 4102320 | 4103024 | tls-try-with.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | tool_lints_2018_preview.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tool_lints.rs | | 4080616 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | trailing-comma.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | trait-bounds-basic.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | trait-bounds-impl-comparison-duplicates.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-bounds-recursion.rs | | 4081512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | trait-bounds.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | trait-cache-issue-18209.rs | | 4110672 | 4101880 | 4080912 | 4080912 | 4081408 | 4082424 | static-recursive.rs | | 4324440 | 4295264 | 4176720 | 4176736 | 4179192 | 4181368 | stdio-is-blocking.rs | | 4081816 | 4081984 | 4080008 | 4080008 | 4080008 | 4080616 | stmt_expr_attr_macro_parse.rs | | 4106896 | 4102424 | 4098600 | 4098600 | 4098600 | 4098912 | str-concat.rs | | 4082488 | 4082552 | 4081320 | 4081320 | 4081392 | 4081568 | string-box-error.rs | | 4081760 | 4081928 | 4080000 | 4080000 | 4080000 | 4080064 | string-escapes.rs | | 4106840 | 4102112 | 4098232 | 4098232 | 4098232 | 4098440 | string-self-append.rs | | 4089432 | 4085168 | 4080296 | 4080296 | 4080296 | 4080760 | str-multiline.rs | | 4087352 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | struct-aliases.rs | | | | | | | | struct-aliases-xcrate.rs | | | | | | | | struct-destructuring-cross-crate.rs | | 4085584 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | struct-field-shorthand.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | struct-like-variant-construct.rs | | 4111568 | 4111632 | 4110880 | 4080008 | 4110880 | 4110952 | struct-like-variant-match.rs | | 4100928 | 4100544 | 4088608 | 4088608 | 4088608 | 4088808 | struct-literal-dtor.rs | | 4091720 | 4091544 | 4080896 | 4080896 | 4080896 | 4081488 | struct-lit-functional-no-fields.rs | | 4081280 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | struct-new-as-field-name.rs | | 4090536 | 4086112 | 4080728 | 4080728 | 4080800 | 4081152 | struct-order-of-eval-1.rs | | 4090560 | 4086136 | 4080800 | 4080800 | 4080800 | 4081176 | struct-order-of-eval-2.rs | | 4082176 | 4081184 | 4080136 | 4080136 | 4080136 | 4080208 | struct-order-of-eval-3.rs | | 4082096 | 4081184 | 4080136 | 4080136 | 4080136 | 4080208 | struct-order-of-eval-4.rs | | 4082904 | 4082256 | 4080008 | 4080008 | 4080008 | 4080072 | struct-partial-move-1.rs | | 4087648 | 4082968 | 4080008 | 4080008 | 4080008 | 4080072 | struct-partial-move-2.rs | | 4081800 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | struct-path-associated-type.rs | | 4086704 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | struct-path-self.rs | | 4093344 | 4093408 | 4088752 | 4088752 | 4088752 | 4088824 | struct-pattern-matching.rs | | | | | | | | struct-return.rs | | 4095832 | 4086248 | 4080000 | 4080000 | 4080000 | 4080072 | structured-compare.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | struct-variant-field-visibility.rs | | | | | | | | struct_variant_xc_match.rs | | | | | | | | struct_variant_xc.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | super-fast-paren-parsing.rs | | 4080328 | 4080392 | 4079984 | 4079984 | 4079992 | 4080056 | super.rs | | 4081568 | 4081512 | 4080008 | 4080008 | 4080008 | 4080080 | supertrait-default-generics.rs | | 4168704 | 4139896 | 4142440 | 4142440 | 4142440 | 4142512 | supported-cast.rs | | | | | | | | svh-add-nothing.rs | | 4081800 | 4081136 | 4079992 | 4079992 | 4079992 | 4080056 | swap-1.rs | | 4096272 | 4091808 | 4079992 | 4079992 | 4079992 | 4081200 | swap-2.rs | | 4083992 | 4083552 | 4080000 | 4080000 | 4080000 | 4080200 | swap-overlapping.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | sync-send-atomics.rs | | 4111456 | 4108168 | 4103280 | 4103280 | 4103408 | 4103744 | sync-send-in-std.rs | | 4088672 | 4083176 | 4080776 | 4080776 | 4080912 | 4080984 | syntax-extension-cfg.rs | | 4116680 | 4104752 | 4087344 | 4087112 | 4087672 | 4088432 | syntax-extension-source-utils.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | syntax-trait-polarity.rs | | 4088968 | 4083256 | 4080000 | 4080000 | 4080000 | 4080072 | tag-align-dyn-u64.rs | | 4094928 | 4085176 | 4080792 | 4080792 | 4080936 | 4081000 | tag-align-dyn-variants.rs | | 4108808 | 4104600 | 4099144 | 4099144 | 4099288 | 4099640 | tag-align-shape.rs | | 4088952 | 4083248 | 4080000 | 4080000 | 4080000 | 4080064 | tag-align-u64.rs | | 4107752 | 4103432 | 4098384 | 4098384 | 4098384 | 4098848 | tag-disr-val-shape.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | tag-exports.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | tag-in-block.rs | | 4088904 | 4083424 | 4079984 | 4079984 | 4079984 | 4080056 | tag.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | tag-variant-disr-type-mismatch.rs | | 4090608 | 4090448 | 4080992 | 4080992 | 4080992 | 4081456 | tag-variant-disr-val.rs | | 4083432 | 4083128 | 4080000 | 4080000 | 4080000 | 4080208 | tail-call-arg-leak.rs | | 4106152 | 4100544 | 4093680 | 4093680 | 4093888 | 4093952 | tail-cps.rs | | 4088928 | 4083312 | 4079992 | 4079992 | 4079992 | 4081120 | tail-direct.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | slowparse-string.rs | | 4120696 | 4103856 | 4092200 | 4092200 | 4092368 | 4089008 | small-enums-with-fields.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | snake-case-no-lowercase-equivalent.rs | | 4151408 | 4140136 | 4116360 | 4116360 | 4116552 | 4117080 | spawn2.rs | | 4154520 | 4148784 | 4117432 | 4117432 | 4118176 | 4118920 | spawn-fn.rs | | 4112944 | 4113088 | 4088432 | 4088432 | 4088496 | 4089024 | spawning-with-debug.rs | | 4147080 | 4140552 | 4116640 | 4116648 | 4112800 | 4113320 | spawn.rs | | 4212568 | 4216928 | 4121280 | 4124928 | 4122312 | 4124832 | spawn-types.rs | | 4117680 | 4100288 | 4081008 | 4081008 | 4081008 | 4081480 | sse2.rs | | 4080944 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | stable-addr-of.rs | | | | | | | | static-array-across-crate.rs | | | | | | | | static-fn-inline-xc.rs | | | | | | | | static-fn-trait-xc.rs | | 4081720 | 4081600 | 4080888 | 4080888 | 4080888 | 4080952 | static-function-pointer.rs | | | | | | | | static-function-pointer-xc.rs | | 4161960 | 4137880 | 4086720 | 4086712 | 4087784 | 4088848 | static-impl.rs | | 4081648 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | static-method-in-trait-with-tps-intracrate.rs | | 4080600 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | static-methods-in-traits2.rs | | 4081832 | 4081808 | 4080008 | 4080008 | 4080008 | 4080072 | static-methods-in-traits.rs | | | | | | | | static-method-xcrate.rs | | | | | | | | static-mut-foreign.rs | | | | | | | | static-mut-xc.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | slowparse-bstring.rs | | 4110208 | 4105512 | 4088560 | 4088560 | 4088560 | 4088768 | size-and-align.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | sized-borrowed-pointer.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | sized-owned-pointer.rs | | 4143040 | 4133904 | 4099600 | 4099600 | 4099784 | 4100608 | sleep.rs | | 4112920 | 4106256 | 4085584 | 4085584 | 4085680 | 4087744 | slice-2.rs | | 4103480 | 4101232 | 4080624 | 4080624 | 4080840 | 4081584 | slice_binary_search.rs | | 4106696 | 4091936 | 4080008 | 4080008 | 4080008 | 4080080 | slice-of-zero-size-elements.rs | | 4131528 | 4123744 | 4099816 | 4099808 | 4100048 | 4100568 | slice-panic-1.rs | | 4142456 | 4130104 | 4100608 | 4100600 | 4100952 | 4101472 | slice-panic-2.rs | | 4080400 | 4080464 | 4080056 | 4080056 | 4080056 | 4080128 | simple_global_asm.rs | | 4088888 | 4088952 | 4088472 | 4088472 | 4088472 | 4088544 | simple-match-generic-tag.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | simple-generic-tag.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | simple-infer.rs | | 4081328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | rfc1623.rs | | 4181688 | 4153864 | 4106944 | 4107056 | 4104112 | 4101896 | rfc1857-drop-order.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | rfc-2421-unreserve-pure-offsetof-sizeof-alignof.rs | | | | | | | | rmeta.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | rustc-rust-log.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | rvalue-static-promotion.rs | | 4422760 | 4127840 | 4121088 | 4121088 | 4116992 | 4117056 | saturating-float-casts.rs | | | | | | | | segfault-no-out-of-stack.rs | | 4081496 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | self-in-mut-slot-immediate-value.rs | | 4081432 | 4081888 | 4080008 | 4080008 | 4080008 | 4080072 | self-shadowing-import.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | self-type-param.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | semi-after-macro-ty.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | semistatement-in-lambda.rs | | 4196712 | 4197992 | 4112800 | 4112528 | 4109784 | 4112712 | sendable-class.rs | | 4081056 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | sendfn-is-a-block.rs | | 4103008 | 4098856 | 4080904 | 4080904 | 4081000 | 4081544 | send-is-not-static-par-for.rs | | 4213888 | 4178720 | 4104824 | 4104832 | 4109496 | 4111920 | send_str_hashmap.rs | | 4322136 | 4261040 | 4113080 | 4113080 | 4115984 | 4119288 | send_str_treemap.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | send-type-inference.rs | | | | | | | | sepcomp-cci.rs | | | | | | | | sepcomp-extern.rs | | 4081248 | 4081024 | 4080008 | 4080008 | 4080008 | 4080072 | sepcomp-fns-backwards.rs | | 4081208 | 4080984 | 4079992 | 4079992 | 4079992 | 4080064 | sepcomp-fns.rs | | | | | | | | sepcomp-lib.rs | | 4080904 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | sepcomp-statics.rs | | 4132448 | 4129080 | 4099920 | 4099920 | 4100256 | 4100784 | sepcomp-unwind.rs | | 4124336 | 4116352 | 4085736 | 4085736 | 4081888 | 4083992 | seq-compare.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | shadowed-use-visibility.rs | | 4116584 | 4083328 | 4079992 | 4079992 | 4079992 | 4080288 | shadow.rs | | 4088872 | 4088936 | 4088456 | 4088456 | 4088456 | 4088528 | shebang.rs | | 4123016 | 4080704 | 4080136 | 4080136 | 4080136 | 4080200 | shift-near-oflo.rs | | 4092144 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | shift.rs | | 4085632 | 4081152 | 4080000 | 4080000 | 4080000 | 4080072 | shift-various-types.rs | | 4100432 | 4100488 | 4093296 | 4093296 | 4089304 | 4089456 | show-boxed-slice.rs | | 4247176 | 4218888 | 4142168 | 4142160 | 4148104 | 4149880 | signal-exit-status.rs | | 4081376 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | signed-shift-const-eval.rs | | 4289160 | 4268072 | 4169704 | 4169880 | 4167688 | 4170176 | sigpipe-should-be-ignored.rs | | 4110880 | 4110944 | 4080000 | 4080000 | 4080000 | 4080064 | simd-generics.rs | | 4110512 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-arithmetic.rs | | 4171040 | 4133304 | 4125128 | 4125128 | 4125488 | 4125552 | simd-intrinsic-generic-cast.rs | | 4158104 | 4115504 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-comparison.rs | | 4108024 | 4087080 | 4080016 | 4080016 | 4080016 | 4080872 | simd-intrinsic-generic-elements.rs | | 4135816 | 4129512 | 4115568 | 4115568 | 4115608 | 4116112 | simd-intrinsic-generic-gather.rs | | 4130640 | 4122472 | 4080016 | 4080016 | 4080016 | 4080080 | simd-intrinsic-generic-select.rs | | 4093424 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | simd-size-align.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | simd-type.rs | | 4081576 | 4081640 | 4080000 | 4080000 | 4080000 | 4080064 | simd-upgraded.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | simple-generic-match.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080024 | 4080088 | regions-no-variance-from-fn-generics.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-nullary-variant.rs | | 4081120 | 4081096 | 4080000 | 4080000 | 4080000 | 4080064 | regions-params.rs | | 4080448 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | regions-reassign-let-bound-pointer.rs | | 4080448 | 4080424 | 4080016 | 4080016 | 4080024 | 4080088 | regions-reassign-match-bound-pointer.rs | | 4201264 | 4168056 | 4099344 | 4099352 | 4100272 | 4102240 | regions-refcell.rs | | 4089240 | 4083752 | 4080016 | 4080016 | 4080016 | 4081288 | regions-return-interior-of-option.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-scope-chain-example.rs | | 4093496 | 4093560 | 4088736 | 4088736 | 4088736 | 4088800 | regions-self-impls.rs | | 4093328 | 4093392 | 4088736 | 4088736 | 4088736 | 4088800 | regions-self-in-enums.rs | | 4093320 | 4093384 | 4088728 | 4088728 | 4088728 | 4088792 | regions-simple.rs | | 4080752 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-static-bound.rs | | 4094616 | 4094264 | 4088968 | 4088968 | 4088968 | 4089040 | regions-static-closure.rs | | 4082240 | 4082240 | 4080008 | 4080008 | 4080008 | 4080384 | regions-trait-object-1.rs | | 4080368 | 4080440 | 4080032 | 4080032 | 4080032 | 4080096 | regions-variance-contravariant-use-contravariant.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | regions-variance-covariant-use-covariant.rs | | 4106928 | 4103464 | 4093672 | 4093672 | 4093744 | 4093976 | repeated-vector-syntax.rs | | 4088160 | 4084936 | 4081112 | 4081112 | 4081216 | 4081504 | repeat-expr-in-static.rs | | 4088672 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | repr_c_int_align.rs | | 4081368 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | resolve-issue-2428.rs | | 4080608 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | resolve-pseudo-shadowing.rs | | 4100824 | 4100096 | 4093928 | 4093928 | 4093928 | 4098088 | resource-assign-is-not-copy.rs | | 4100376 | 4099576 | 4092840 | 4092840 | 4088744 | 4088816 | resource-destruct.rs | | 4090320 | 4084552 | 4080000 | 4080000 | 4080000 | 4080072 | resource-in-struct.rs | | 4137992 | 4119704 | 4081168 | 4081168 | 4081944 | 4083504 | result-opt-conversions.rs | | 4108536 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | ret-bang.rs | | 4080392 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | ret-none.rs | | 4089648 | 4081144 | 4080248 | 4080248 | 4080248 | 4080312 | return-from-closure.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | return-nil.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | rfc-1014-2.rs | | 4088944 | 4089008 | 4088456 | 4088456 | 4088456 | 4088528 | rfc-1014.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-defer-unification.rs | | 4081128 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | promoted_overflow_opt.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | ptr-coercion.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | pub-extern-privacy.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | pub-item-inside-macro.rs | | 4080432 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | pub-method-inside-macro.rs | | | | | | | | pub_use_mods_xcrate_exe.rs | | | | | | | | pub-use-xcrate.rs | | 4089048 | 4089112 | 4088464 | 4088464 | 4088464 | 4088528 | purity-infer.rs | | 4091408 | 4085256 | 4080000 | 4080000 | 4080000 | 4081152 | range_inclusive_gate.rs | | 4089224 | 4081592 | 4080016 | 4080016 | 4080016 | 4080160 | range-inclusive-pattern-precedence.rs | | 4099976 | 4085448 | 4079984 | 4079984 | 4079984 | 4080968 | range.rs | | 4107616 | 4097912 | 4080000 | 4080000 | 4080000 | 4081552 | ranges-precedence.rs | | 4143728 | 4119624 | 4080576 | 4080576 | 4081744 | 4082432 | range-type-infer.rs | | 4240576 | 4181952 | 4090736 | 4090744 | 4092672 | 4102416 | raw-fat-ptr.rs | | 4086152 | 4082208 | 4079992 | 4079992 | 4079992 | 4080832 | raw-str.rs | | 4108216 | 4104264 | 4093408 | 4093408 | 4093408 | 4093688 | rcvr-borrowed-to-slice.rs | | | | | | | | reachable-unnameable-items.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | reachable-unnameable-type-alias.rs | | 4081320 | 4081392 | 4079992 | 4079992 | 4079992 | 4080056 | readalias.rs | | 4109424 | 4105144 | 4099232 | 4099232 | 4099376 | 4099720 | rec-align-u32.rs | | 4109424 | 4105144 | 4099232 | 4099232 | 4099376 | 4099720 | rec-align-u64.rs | | 4101144 | 4100776 | 4093096 | 4093096 | 4093096 | 4093432 | rec-auto.rs | | 4085616 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | rec-extend.rs | | 4081488 | 4081424 | 4079992 | 4079992 | 4079992 | 4080064 | record-pat.rs | | 4085600 | 4081456 | 4080776 | 4080776 | 4080776 | 4080840 | rec.rs | | 4085728 | 4081696 | 4080784 | 4080784 | 4080784 | 4080848 | rec-tup.rs | | | | | | | | reexported-static-methods-cross-crate.rs | | | | | | | | reexport-should-still-link.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | reexport-star.rs | | | | | | | | reexport-test-harness-main.rs | | 4080888 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | refer-to-other-statics-by-value.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-addr-of-interior-of-unique-box.rs | | 4093400 | 4093392 | 4088736 | 4088736 | 4088736 | 4088800 | regions-addr-of-ret.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-assoc-type-region-bound.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-assoc-type-static-bound.rs | | 4081416 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-borrow-evec-fixed.rs | | 4090016 | 4086336 | 4080008 | 4080008 | 4080008 | 4081192 | regions-borrow-evec-uniq.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | regions-bot.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | regions-bound-lists-feature-gate-2.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-bound-lists-feature-gate.rs | | 4082432 | 4082272 | 4080000 | 4080000 | 4080008 | 4080072 | regions-copy-closure.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-creating-enums2.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-creating-enums5.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-debruijn-of-object.rs | | 4080512 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-dependent-autofn.rs | | 4089104 | 4085272 | 4080008 | 4080008 | 4080008 | 4080216 | regions-dependent-autoslice.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | regions-dependent-let-ref.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-lifetime-in-assoc-fn.rs | | 4081712 | 4081656 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-used-in-bound-method.rs | | 4081696 | 4081640 | 4080016 | 4080016 | 4080016 | 4080080 | regions-early-bound-used-in-bound.rs | | 4081824 | 4081768 | 4080024 | 4080024 | 4080024 | 4080088 | regions-early-bound-used-in-type-param.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | regions-expl-self.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-fn-subtyping-2.rs | | 4080376 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | regions-free-region-outlives-static-outlives-free-region.rs | | 4090128 | 4084408 | 4080016 | 4080016 | 4080016 | 4080088 | regions-infer-borrow-scope-addr-of.rs | | 4093008 | 4088336 | 4080016 | 4080016 | 4080016 | 4081400 | regions-infer-borrow-scope-view.rs | | 4081712 | 4081680 | 4080008 | 4080008 | 4080000 | 4080072 | regions-infer-call-2.rs | | 4081520 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | regions-infer-call.rs | | 4081480 | 4081544 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-contravariance-due-to-ret.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-reborrow-ref-mut-recurse.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | regions-infer-region-in-fn-but-not-type.rs | | 4080520 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | regions-infer-static-from-proc.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | regions-issue-21422.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | regions-issue-22246.rs | | 4081976 | 4081920 | 4080032 | 4080032 | 4080032 | 4080096 | regions-lifetime-static-items-enclosing-scopes.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | regions-link-fn-args.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | regions-lub-ref-ref-rc.rs | | 4082456 | 4082328 | 4080000 | 4080000 | 4080008 | 4080072 | regions-mock-codegen.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | regions-no-bound-in-argument-cleanup.rs | | 4349160 | 4305192 | 4182568 | 4182552 | 4189120 | 4191880 | out-of-stack.rs | | 4081352 | 4081416 | 4080736 | 4080736 | 4080736 | 4080800 | out-pointer-aliasing.rs | | 4093240 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | over-constrained-vregs.rs | | 4126528 | 4088904 | 4080592 | 4080592 | 4080696 | 4081208 | overlap-doesnt-conflict-with-specialization.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | overlap-permitted-for-marker-traits-neg.rs | | 4126496 | 4088888 | 4080584 | 4080584 | 4080688 | 4081200 | overlap-permitted-for-marker-traits.rs | | 4089360 | 4084200 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-autoderef-count.rs | | 4081016 | 4081080 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-autoderef-indexing.rs | | 4095184 | 4085880 | 4080008 | 4080008 | 4080760 | 4080920 | overloaded-autoderef-order.rs | | 4081952 | 4082128 | 4080008 | 4080008 | 4080008 | 4081032 | overloaded-autoderef-vtable.rs | | | | | | | | overloaded-autoderef-xcrate.rs | | 4081792 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-one-arg.rs | | 4081872 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-two-args.rs | | 4081720 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-object-zero-args.rs | | 4080696 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded-calls-param-vtables.rs | | 4081488 | 4081192 | 4080008 | 4080008 | 4080008 | 4080072 | overloaded-calls-simple.rs | | 4081040 | 4081008 | 4080008 | 4080008 | 4080008 | 4080080 | overloaded-calls-zero-args.rs | | 4152632 | 4127240 | 4086640 | 4086640 | 4087824 | 4088888 | overloaded-deref-count.rs | | 4189136 | 4159568 | 4085560 | 4085560 | 4094032 | 4095800 | overloaded-deref.rs | | 4088888 | 4083448 | 4080032 | 4080032 | 4080032 | 4080096 | overloaded_deref_with_ref_pattern_issue15609.rs | | 4080984 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | overloaded_deref_with_ref_pattern.rs | | 4081416 | 4081240 | 4080000 | 4080000 | 4080000 | 4080072 | owned-implies-static.rs | | 4080848 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | packed-struct-borrow-element.rs | | 4087272 | 4082152 | 4080416 | 4080416 | 4080416 | 4080552 | packed-struct-drop-aligned.rs | | 4088048 | 4084808 | 4080760 | 4080760 | 4080728 | 4081296 | packed-struct-generic-layout.rs | | 4085024 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | packed-struct-generic-size.rs | | 4088040 | 4084808 | 4080616 | 4080616 | 4080720 | 4081288 | packed-struct-layout.rs | | 4085312 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | packed-struct-match.rs | | 4094120 | 4080872 | 4080000 | 4080000 | 4080000 | 4080072 | packed-struct-size.rs | | | | | | | | packed-struct-size-xc.rs | | 4100456 | 4090416 | 4085136 | 4085136 | 4081192 | 4081264 | packed-struct-vec.rs | | 4088040 | 4084808 | 4080624 | 4080624 | 4080728 | 4081288 | packed-tuple-struct-layout.rs | | 4089984 | 4080880 | 4080008 | 4080008 | 4080008 | 4080072 | packed-tuple-struct-size.rs | | 4132696 | 4129480 | 4100040 | 4100040 | 4100384 | 4101032 | panic-in-dtor-drops-fields.rs | | 4081736 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | panic-safe.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | parameterized-trait-with-bounds.rs | | 4093080 | 4088936 | 4088464 | 4088464 | 4088464 | 4088528 | paren-free.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | parse-assoc-type-lt.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | parse-complex-macro-invoc-op.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | parse-panic.rs | | 4081128 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | parser-unicode-whitespace.rs | | 4080384 | 4080392 | 4079984 | 4079984 | 4079984 | 4080056 | path.rs | | 4145344 | 4137192 | 4118400 | 4118424 | 4119304 | 4120640 | paths-containing-nul.rs | | 4088696 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-ranges.rs | | 4082824 | 4081720 | 4080008 | 4080008 | 4080016 | 4080080 | pattern-bound-var-in-for-each.rs | | 4093656 | 4093600 | 4092832 | 4092832 | 4088736 | 4088800 | pattern-in-closure.rs | | 4094208 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-1.rs | | 4088808 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-2.rs | | 4080952 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-3.rs | | 4093968 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-4.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-5.rs | | 4085632 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-6.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | pat-tuple-7.rs | | 4253712 | 4235232 | 4175000 | 4175000 | 4176536 | 4178312 | print-stdout-eprint-stderr.rs | | 4080328 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | privacy1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | privacy-ns.rs | | | | | | | | privacy-reexport.rs | | 4080944 | 4080840 | 4080000 | 4080000 | 4080000 | 4080072 | private-class-field.rs | | 4082568 | 4081768 | 4080000 | 4080000 | 4080000 | 4080064 | private-method.rs | | | | | | | | priv-impl-prim-ty.rs | | 4409480 | 4349680 | 4178544 | 4178544 | 4181232 | 4190696 | process-envs.rs | | 4240944 | 4217464 | 4142032 | 4142032 | 4147824 | 4149672 | process-exit.rs | | 4337008 | 4291056 | 4166488 | 4166488 | 4164248 | 4167488 | process-remove-from-env.rs | | 4237648 | 4224560 | 4157824 | 4157824 | 4159232 | 4156680 | process-sigpipe.rs | | 4198944 | 4184224 | 4136480 | 4136480 | 4137672 | 4138736 | process-spawn-nonexistent.rs | | 4424464 | 4367984 | 4209176 | 4209344 | 4212752 | 4217872 | process-spawn-with-unicode-params.rs | | 4241176 | 4227800 | 4154032 | 4153960 | 4155576 | 4157384 | process-status-inherits-stdin.rs | | 4084880 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-cache-issue-31849.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | project-cache-issue-37154.rs | | 4081736 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | newlambdas.rs | | 4118144 | 4116904 | 4080768 | 4081504 | 4082072 | 4082544 | newtype-polymorphic.rs | | 4094080 | 4094064 | 4088720 | 4088720 | 4088720 | 4088792 | newtype.rs | | 4083200 | 4082496 | 4080008 | 4080008 | 4080008 | 4080072 | newtype-struct-drop-run.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | newtype-struct-with-dtor.rs | | | | | | | | newtype-struct-xc-2.rs | | | | | | | | newtype-struct-xc.rs | | 4081296 | 4081200 | 4080000 | 4080000 | 4080000 | 4080072 | newtype-temporary.rs | | 4109680 | 4098840 | 4086536 | 4086536 | 4083304 | 4083376 | next-power-of-two-overflow-debug.rs | | 4096112 | 4082048 | 4080192 | 4080192 | 4080184 | 4080256 | next-power-of-two-overflow-ndebug.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | nil-decl-in-foreign.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | nil-pattern.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-core-1.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | no-drop-flag-size.rs | | 4132592 | 4129096 | 4100008 | 4100016 | 4100320 | 4100840 | no-landing-pads.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | non-built-in-quote.rs | | 4082160 | 4081296 | 4080000 | 4080000 | 4080000 | 4080064 | nondrop-cycle.rs | | 4081736 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | non-legacy-modes.rs | | 4089192 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | nonzero-enum.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-1.rs | | 4080480 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-2.rs | | 4080664 | 4080592 | 4079992 | 4079992 | 4079992 | 4080056 | no-std-3.rs | | 4276208 | 4256504 | 4177656 | 4181920 | 4179368 | 4185880 | no-stdio.rs | | 4101712 | 4091608 | 4080168 | 4080168 | 4080168 | 4081984 | nul-characters.rs | | 4081440 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | nullable-pointer-ffi-compat.rs | | 4088968 | 4084120 | 4080112 | 4080112 | 4080112 | 4080312 | nullable-pointer-opt-closures.rs | | 4080840 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nullable-pointer-size.rs | | 4081376 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | nullary-or-pattern.rs | | 4081712 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | numeric-fields.rs | | 4094760 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | numeric-method-autoexport.rs | | 4312256 | 4196656 | 4119168 | 4119168 | 4119168 | 4119232 | num-wrapping.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | object-lifetime-default-default-to-static.rs | | 4080648 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-ref-struct.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-rptr-box.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | object-lifetime-default-from-rptr-mut.rs | | 4080544 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | object-lifetime-default-from-rptr.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080088 | object-lifetime-default-from-rptr-struct.rs | | 4081088 | 4081048 | 4080008 | 4080008 | 4080008 | 4080072 | object-method-numbering.rs | | 4081896 | 4081736 | 4080024 | 4080024 | 4080024 | 4080088 | object-safety-sized-self-by-value-self.rs | | 4082008 | 4081576 | 4080024 | 4080024 | 4080024 | 4080088 | object-safety-sized-self-generic-method.rs | | 4081888 | 4081568 | 4080024 | 4080024 | 4080016 | 4080088 | object-safety-sized-self-return-Self.rs | | 4081440 | 4081216 | 4080016 | 4080016 | 4080272 | 4080432 | objects-coerce-freeze-borrored.rs | | 4091760 | 4085896 | 4080096 | 4080096 | 4080096 | 4080240 | once-move-out-on-heap.rs | | 4080688 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | one-tuple.rs | | 4130352 | 4125880 | 4080008 | 4080008 | 4080008 | 4080080 | op-assign-builtins-by-ref.rs | | 4098352 | 4094064 | 4093312 | 4093312 | 4093312 | 4093376 | opeq.rs | | 4080944 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | operator-associativity.rs | | 4082232 | 4081824 | 4080008 | 4080008 | 4080008 | 4080072 | operator-multidispatch.rs | | 4080808 | 4080744 | 4080160 | 4080160 | 4080160 | 4080224 | optimization-fuel-0.rs | | 4081000 | 4080744 | 4080160 | 4080160 | 4080160 | 4080224 | optimization-fuel-1.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | optional_comma_in_match_arm.rs | | 4115072 | 4105120 | 4092872 | 4092872 | 4092872 | 4093024 | option-ext.rs | | 4091272 | 4085416 | 4080000 | 4080000 | 4080000 | 4080064 | option-unwrap.rs | | 4088704 | 4085264 | 4080936 | 4080936 | 4081040 | 4081328 | order-drop-with-match.rs | | 4081472 | 4081448 | 4079992 | 4079992 | 4079992 | 4080064 | or-pattern.rs | | 4081320 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | move-arg.rs | | 4080472 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | move-nullary-fn.rs | | 4110584 | 4102392 | 4080496 | 4081152 | 4081432 | 4081776 | move-out-of-field.rs | | | | | | | | moves-based-on-type-cross-crate.rs | | 4081264 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | move-scalar.rs | | 4100920 | 4100536 | 4088592 | 4088592 | 4088592 | 4088800 | move-self.rs | | | | | | | | msvc-data-only.rs | | 4088872 | 4088936 | 4088456 | 4088456 | 4088456 | 4088528 | multibyte.rs | | 4081880 | 4081704 | 4080000 | 4080000 | 4080000 | 4080064 | multidispatch1.rs | | 4081544 | 4081152 | 4080000 | 4080000 | 4080000 | 4080064 | multidispatch2.rs | | 4088176 | 4082680 | 4080032 | 4080032 | 4080032 | 4080096 | multidispatch-conditional-impl-not-considered.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | multi-let.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | multiline-comment.rs | | 4425104 | 4356664 | 4187224 | 4187000 | 4186000 | 4194792 | multi-panic.rs | | 4085680 | 4080864 | 4080000 | 4080000 | 4080000 | 4080064 | multiple-reprs.rs | | 4080416 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | multiple-trait-bounds.rs | | 4087608 | 4083384 | 4080200 | 4080200 | 4080200 | 4080264 | mutability-inherits-through-fixed-length-vec.rs | | 4115008 | 4105560 | 4092864 | 4092864 | 4093040 | 4093336 | mutable-alias-vec.rs | | 4120936 | 4111904 | 4110960 | 4110960 | 4110960 | 4111024 | mut-in-ident-patterns.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | mutual-recursion-group.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mut-vstore-expr.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | namespaced-enum-emulate-flat.rs | | | | | | | | namespaced-enum-emulate-flat-xc.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | namespaced-enum-glob-import.rs | | | | | | | | namespaced-enum-glob-import-xcrate.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | namespaced-enums.rs | | | | | | | | namespaced-enums-xcrate.rs | | 4073632 | 4069536 | 4069384 | 4069384 | 4069384 | 4069384 | native-print-no-runtime.rs | | 4088648 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | negative.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-block-comment.rs | | 4081448 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | nested-class.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-enum-same-names.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | nested-exhaustive-match.rs | | 4081872 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | nested-function-names-issue-8587.rs | | | | | | | | nested_item_main.rs | | 4101616 | 4089112 | 4088480 | 4088480 | 4088480 | 4088544 | nested-matchs.rs | | 4101376 | 4099992 | 4088464 | 4088464 | 4088464 | 4088536 | nested-pattern.rs | | 4098264 | 4099592 | 4079992 | 4079992 | 4080288 | 4080848 | nested-vec-1.rs | | 4111224 | 4109352 | 4093400 | 4093400 | 4093600 | 4094128 | nested-vec-2.rs | | 4169368 | 4155872 | 4117384 | 4117392 | 4117936 | 4119208 | nested-vec-3.rs | | 4084480 | 4083320 | 4080000 | 4080000 | 4080000 | 4080200 | never_coercions.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | never-result.rs | | 4080344 | 4080400 | 4080000 | 4080000 | 4080000 | 4080072 | never-type-rvalues.rs | | 4081960 | 4081808 | 4080000 | 4080000 | 4080000 | 4080216 | new-box-syntax.rs | | 4094136 | 4094200 | 4093496 | 4093496 | 4093496 | 4093560 | new-impl-syntax.rs | | 4088880 | 4088944 | 4088472 | 4088472 | 4088464 | 4088536 | new-import-syntax.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | newlambdas-ret-infer2.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080008 | 4080072 | newlambdas-ret-infer.rs | | 4093400 | 4093464 | 4088808 | 4088808 | 4088808 | 4088872 | new-style-constants.rs | | 4093448 | 4093512 | 4088848 | 4092944 | 4088856 | 4088920 | new-style-fixed-length-vec.rs | | 4109984 | 4102384 | 4080480 | 4081136 | 4081344 | 4081936 | new-unicode-escapes.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | new-unsafe-pointers.rs | | 4115600 | 4101288 | 4080016 | 4080016 | 4080400 | 4081024 | method-two-trait-defer-resolution-1.rs | | 4082056 | 4082120 | 4080000 | 4080000 | 4080000 | 4080072 | method-where-clause.rs | | 4080576 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mid-path-type-params.rs | | 4194720 | 4157904 | 4090112 | 4090112 | 4091848 | 4098288 | minmax-stability-issue-23687.rs | | 4093992 | 4089464 | 4080000 | 4080000 | 4080000 | 4080072 | mir_adt_construction.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | mir_ascription_coercion.rs | | 4116376 | 4102224 | 4080488 | 4080488 | 4080712 | 4081128 | mir_augmented_assignments.rs | | 4081752 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_autoderef.rs | | 4081872 | 4081696 | 4079992 | 4079992 | 4079992 | 4080064 | mir_boxing.rs | | 4090688 | 4082648 | 4080184 | 4080184 | 4080184 | 4080528 | mir_build_match_comparisons.rs | | 4107648 | 4098288 | 4082216 | 4082440 | 4082920 | 4082992 | mir_calls_to_shims.rs | | 4081120 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | mir_call_with_associated_type.rs | | 4081104 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_cast_fn_ret.rs | | 4095936 | 4092192 | 4088952 | 4088952 | 4088952 | 4089248 | mir_codegen_array_2.rs | | 4096024 | 4092192 | 4088944 | 4088944 | 4088944 | 4089240 | mir_codegen_array.rs | | 4081208 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir_codegen_call_converging.rs | | 4151744 | 4135640 | 4080416 | 4080416 | 4080408 | 4080480 | mir_codegen_calls.rs | | | | | | | | mir_codegen_calls_variadic.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir_codegen_critical_edge.rs | | 4093608 | 4089160 | 4088600 | 4088600 | 4088600 | 4088672 | mir_codegen_spike1.rs | | 4080896 | 4080960 | 4080000 | 4080000 | 4080008 | 4080072 | mir_codegen_switchint.rs | | 4085752 | 4081728 | 4080000 | 4080000 | 4080000 | 4080072 | mir_codegen_switch.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mir_coercion_casts.rs | | 4107496 | 4098400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_coercions.rs | | 4090144 | 4086264 | 4081416 | 4081416 | 4081800 | 4082384 | mir_constval_adts.rs | | 4145432 | 4125736 | 4087160 | 4087272 | 4087888 | 4088904 | mir_drop_order.rs | | 4081696 | 4081536 | 4080008 | 4080008 | 4080008 | 4080072 | mir_early_return_scope.rs | | 4082768 | 4081584 | 4080248 | 4080248 | 4080248 | 4080312 | mir_fat_ptr_drop.rs | | 4089280 | 4085984 | 4079992 | 4079992 | 4079992 | 4080064 | mir_fat_ptr.rs | | 37647600 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | mir_heavy_promoted.rs | | 4081040 | 4081104 | 4080000 | 4080000 | 4080000 | 4080072 | mir_match_arm_guard.rs | | 4147960 | 4139592 | 4087664 | 4087664 | 4088384 | 4123832 | mir_misc_casts.rs | | 4086464 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_overflow_off.rs | | 4186192 | 4153112 | 4086008 | 4090104 | 4087256 | 4089120 | mir_raw_fat_ptr.rs | | | | | | | | mir_refs_correct.rs | | 4080408 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_small_agg_arg.rs | | 4081248 | 4081128 | 4080008 | 4080008 | 4080008 | 4080072 | mir_struct_with_assoc_ty.rs | | 4081296 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | mir_temp_promotions.rs | | 4080432 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | mir-typeck-normalize-fn-sig.rs | | 4080480 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | mir_void_return_2.rs | | 4080488 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mir_void_return.rs | | 4081360 | 4081424 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_implicit.rs | | 4081352 | 4081416 | 4079992 | 4079992 | 4080000 | 4080064 | mod_dir_path2.rs | | 4081352 | 4081416 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_path3.rs | | 4081472 | 4081536 | 4080000 | 4080000 | 4080000 | 4080072 | mod_dir_path_multi.rs | | 4081352 | 4081424 | 4080000 | 4080000 | 4079992 | 4080064 | mod_dir_path.rs | | 4081384 | 4081448 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_recursive.rs | | 4081360 | 4081424 | 4080000 | 4080000 | 4080000 | 4080064 | mod_dir_simple.rs | | | | | | | | mod_file_aux.rs | | 4081336 | 4081400 | 4079992 | 4079992 | 4079992 | 4080056 | mod_file.rs | | 4081360 | 4081424 | 4080008 | 4080008 | 4080008 | 4080072 | mod_file_with_path_attr.rs | | 4081400 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | mod-inside-fn.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | module-qualified-struct-destructure.rs | | 4083880 | 4083160 | 4080000 | 4080000 | 4080000 | 4080200 | mod-view-items.rs | | 4164528 | 4154496 | 4097768 | 4097768 | 4095272 | 4096696 | monad.rs | | 4083464 | 4083160 | 4080008 | 4080008 | 4080008 | 4080080 | monomorphize-abi-alignment.rs | | 4080888 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | monomorphized-callees-with-ty-params-3314.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | macro-invocation-in-count-expr-fixed-array-type.rs | | 4081832 | 4081928 | 4080000 | 4080000 | 4080000 | 4080064 | macro-lifetime.rs | | 4081864 | 4081944 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-bound.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-labels.rs | | 4081864 | 4081944 | 4080016 | 4080016 | 4080016 | 4080080 | macro-lifetime-used-with-static.rs | | 4170432 | 4143352 | 4121064 | 4121064 | 4121168 | 4122472 | macro-literal.rs | | | | | | | | macro-meta-items.rs | | 4081360 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-method-issue-4621.rs | | 4080424 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | macro-multiple-items.rs | | 4080416 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-named-default.rs | | 4093216 | 4089184 | 4088624 | 4088624 | 4088624 | 4088696 | macro-nested_definition_issue-31946.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-nested_expr.rs | | 4080632 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-nested_stmt_macros.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-nt-list.rs | | 4083136 | 4082768 | 4080008 | 4080008 | 4080008 | 4080072 | macro-of-higher-order.rs | | 4082200 | 4081272 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pat-follow.rs | | 4081328 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-path.rs | | 4088728 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | macro-pat-neg-lit.rs | | 4085472 | 4080856 | 4079992 | 4079992 | 4079992 | 4080056 | macro-pat.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | macro-seq-followed-by-seq.rs | | | | | | | | macros-in-extern.rs | | | | | | | | macro-stability.rs | | 4080800 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | macro-stmt_macro_in_expr_macro.rs | | 4081944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-stmt.rs | | 4101144 | 4096896 | 4082536 | 4082536 | 4082824 | 4083176 | macro-tt-followed-by-seq.rs | | | | | | | | macro-use-all-and-none.rs | | | | | | | | macro-use-all.rs | | | | | | | | macro-use-both.rs | | | | | | | | macro-use-one.rs | | 4080784 | 4080848 | 4080168 | 4080168 | 4080168 | 4080240 | macro-with-attrs1.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-with-attrs2.rs | | 4147624 | 4140328 | 4115880 | 4115880 | 4116368 | 4117112 | macro-with-braces-in-expr-position.rs | | | | | | | | macro_with_super_2.rs | | 4095288 | 4082184 | 4080000 | 4080000 | 4080000 | 4080640 | match-arm-statics.rs | | 4094240 | 4089672 | 4088488 | 4088488 | 4088488 | 4088552 | match-beginning-vert.rs | | 4103936 | 4095576 | 4086112 | 4086040 | 4086328 | 4087000 | match-borrowed_str.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-bot-2.rs | | 4101632 | 4093376 | 4088720 | 4088720 | 4088720 | 4088792 | match-bot.rs | | 4090152 | 4084032 | 4080008 | 4080008 | 4080008 | 4081360 | match-byte-array-patterns.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-enum-struct-0.rs | | 4088672 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-enum-struct-1.rs | | 4081368 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-in-macro.rs | | 4100648 | 4095768 | 4088464 | 4088464 | 4088464 | 4088664 | match-join.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-larger-const.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | match-naked-record-expr.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-naked-record.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | match-path.rs | | 4088512 | 4084568 | 4080008 | 4080008 | 4080008 | 4080592 | match-pattern-bindings.rs | | 4106440 | 4100960 | 4088480 | 4088480 | 4088480 | 4098416 | match-pattern-lit.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | match-pattern-no-type-params.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-pattern-simple.rs | | 4080488 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | match-phi.rs | | 4106344 | 4088088 | 4081144 | 4081144 | 4081288 | 4081856 | match-pipe-binding.rs | | 4088704 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-range-infer.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-range-static.rs | | 4101952 | 4097632 | 4081416 | 4081416 | 4081760 | 4082152 | match-ref-binding-in-guard-3256.rs | | 4081472 | 4081440 | 4080016 | 4080016 | 4080016 | 4080080 | match-ref-binding-mut-option.rs | | 4081456 | 4081424 | 4080008 | 4080008 | 4080008 | 4080072 | match-ref-binding-mut.rs | | 4081352 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | match-ref-binding.rs | | 4081808 | 4081976 | 4080000 | 4080000 | 4080000 | 4080608 | match-ref-unsized.rs | | 4086024 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | match-static-const-rename.rs | | 4101632 | 4088336 | 4080904 | 4080904 | 4081048 | 4081888 | match-str.rs | | 4088704 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | match-struct-0.rs | | 4081376 | 4081440 | 4079992 | 4079992 | 4079992 | 4080824 | match-tag.rs | | 4081744 | 4081904 | 4080000 | 4080000 | 4079992 | 4080064 | match-unsized.rs | | 4080784 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | match-var-hygiene.rs | | 4100096 | 4087096 | 4080008 | 4080008 | 4080008 | 4085264 | match-vec-alternatives.rs | | 4090296 | 4086528 | 4080000 | 4080000 | 4080000 | 4080712 | match-vec-rvalue.rs | | 4093880 | 4093944 | 4088912 | 4088912 | 4088912 | 4088976 | match-with-ret-arm.rs | | 4093752 | 4093600 | 4088744 | 4088744 | 4088744 | 4088816 | max-min-classes.rs | | 4082952 | 4082640 | 4080024 | 4080024 | 4081176 | 4081424 | method-argument-inference-associated-type.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | method-attributes.rs | | 4080552 | 4080424 | 4080024 | 4080024 | 4080016 | 4080088 | method-early-bound-lifetimes-on-self.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | method-normalize-bounds-issue-20604.rs | | 4091696 | 4091544 | 4081816 | 4081816 | 4081816 | 4082280 | method-projection.rs | | 4080496 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | method-recursive-blanket-impl.rs | | | | | | | | kinds-in-metadata.rs | | 4094152 | 4088488 | 4080000 | 4080000 | 4080000 | 4081064 | label_break_value.rs | | 4082280 | 4081272 | 4080000 | 4080000 | 4080000 | 4080064 | labeled-break.rs | | 4089448 | 4085320 | 4080008 | 4080008 | 4080008 | 4080208 | lambda-infer-unresolved.rs | | 4081456 | 4081520 | 4080000 | 4080000 | 4080000 | 4080072 | lambda-var-hygiene.rs | | 4080400 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | large-records.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | last-use-in-block.rs | | 4083336 | 4082296 | 4080008 | 4080008 | 4080008 | 4080584 | last-use-in-cap-clause.rs | | 4106856 | 4094280 | 4088760 | 4088760 | 4088760 | 4088824 | lazy-and-or.rs | | 4093376 | 4093440 | 4088720 | 4088720 | 4088720 | 4088792 | lazy-init.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | let-destruct-ref.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | let-var-hygiene.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | lex-bare-cr-nondoc-comment.rs | | 4115464 | 4100768 | 4081096 | 4081096 | 4081240 | 4081968 | lexer-crlf-line-endings-string-literal-doc-comment.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | lexical-scoping.rs | | | | | | | | lib-defaults.rs | | 4117056 | 4113600 | 4097888 | 4097888 | 4097888 | 4098232 | linear-for-loop.rs | | | | | | | | linkage1.rs | | | | | | | | link-cfg-works.rs | | 4093720 | 4089536 | 4088904 | 4088904 | 4088896 | 4088968 | link-section.rs | | | | | | | | lint-cap.rs | | 4080352 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | lint-dead-code-associated-type.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | lint-dead-code-variant.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | lint-expr-stmt-attrs-for-early-lints.rs | | 4080376 | 4080440 | 4080040 | 4080040 | 4080040 | 4080104 | lint-non-camel-case-types-non-uppercase-statics-unicode.rs | | 4080368 | 4080432 | 4080032 | 4080032 | 4080032 | 4080096 | lint-non-camel-case-with-trailing-underscores.rs | | 4080352 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | lint-unknown-lints-at-crate-level.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | liveness-assign-imm-local-after-loop.rs | | 4080360 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | liveness-assign-imm-local-after-ret.rs | | 4093152 | 4089120 | 4088488 | 4088488 | 4088488 | 4088552 | liveness-loop-break.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080000 | 4080072 | liveness-move-in-loop.rs | | | | | | | | llvm-pr32379.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | log-err-phi.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | logging_before_rt_started.rs | | 4148432 | 4141120 | 4116344 | 4116344 | 4116504 | 4112928 | logging-only-prints-once.rs | | 4100136 | 4095784 | 4086432 | 4086432 | 4082408 | 4082872 | log-knows-the-names-of-variants-in-std.rs | | 4095632 | 4091280 | 4082064 | 4082064 | 4082128 | 4082600 | log-knows-the-names-of-variants.rs | | 4137712 | 4138464 | 4123264 | 4123264 | 4123368 | 4123656 | log-poly.rs | | 4080360 | 4080424 | 4080024 | 4080024 | 4080024 | 4080088 | log_syntax-trace_macros-macro-locations.rs | | 4080416 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | long-while.rs | | 4088656 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | loop-break-cont-1.rs | | 4106072 | 4093072 | 4092592 | 4092592 | 4088496 | 4088568 | loop-break-cont.rs | | 4132440 | 4110648 | 4080920 | 4080920 | 4081288 | 4084352 | loop-break-value.rs | | 4080408 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | loop-diverges.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | loop-labeled-break-value.rs | | 4102912 | 4093512 | 4080000 | 4080000 | 4080208 | 4080504 | loop-label-shadowing.rs | | 4080832 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | loop-no-reinit-needed-post-bot.rs | | 4090520 | 4086952 | 4079992 | 4079992 | 4080264 | 4080464 | loop-scope.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | lto-many-codegen-units.rs | | 4142968 | 4131464 | 4100176 | 4100184 | 4100760 | 4101384 | lto-still-runs-thread-dtors.rs | | 4080800 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | lub-glb-with-unbound-infer-var.rs | | 4081416 | 4080392 | 4079992 | 4079992 | 4079992 | 4080056 | macro-2.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | macro-attribute-expansion.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-attributes.rs | | 4081768 | 4081936 | 4080008 | 4080008 | 4080008 | 4080072 | macro-block-nonterminal.rs | | | | | | | | macro-comma-behavior.rs | | | | | | | | macro-crate-def-only.rs | | | | | | | | macro-crate-nonterminal-renamed.rs | | | | | | | | macro-crate-nonterminal.rs | | 4080960 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | macro-crate-use.rs | | 4081768 | 4081936 | 4080008 | 4080008 | 4080008 | 4080072 | macro-deep_expansion.rs | | 4084728 | 4085016 | 4080016 | 4080016 | 4080008 | 4080216 | macro-delimiter-significance.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-doc-comments.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080072 | macro-doc-escapes.rs | | 4081896 | 4082064 | 4080008 | 4080008 | 4080008 | 4080696 | macro-doc-raw-str-hashes.rs | | | | | | | | macro-export-inner-module.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | macro-followed-by-seq.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | macro-follow.rs | | 4080936 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-include-items.rs | | 4088752 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | macro-interpolation.rs | | | | | | | | issue2170exe.rs | | 4104024 | 4093816 | 4080008 | 4080008 | 4080248 | 4080768 | issue28498-must-work-ex1.rs | | 4104096 | 4093896 | 4080008 | 4080008 | 4080248 | 4080768 | issue28498-must-work-ex2.rs | | 4104248 | 4093888 | 4080000 | 4080000 | 4080248 | 4080760 | issue28498-ugeh-ex1.rs | | 4107144 | 4102768 | 4098592 | 4098592 | 4098592 | 4098792 | issue28498-ugeh-with-lifetime-param.rs | | 4107824 | 4103816 | 4098896 | 4098896 | 4098896 | 4099104 | issue28498-ugeh-with-passed-to-fn.rs | | 4107128 | 4102752 | 4098584 | 4098584 | 4098584 | 4098792 | issue28498-ugeh-with-trait-bound.rs | | | | | | | | issue_3136_b.rs | | 4094128 | 4094208 | 4088760 | 4088760 | 4088760 | 4088832 | issue-7012.rs | | | | | | | | issue-7178.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7222.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7268.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7344.rs | | 4080432 | 4080416 | 4080016 | 4080016 | 4080008 | 4080080 | issue-7519-match-unit-in-arg.rs | | 4094528 | 4094592 | 4093656 | 4093656 | 4093736 | 4093800 | issue-7563.rs | | 4088720 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7575.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7607-2.rs | | 4186592 | 4157640 | 4098624 | 4098624 | 4099288 | 4100784 | issue-7660.rs | | 4081648 | 4082560 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7663.rs | | 4096240 | 4093064 | 4079992 | 4079992 | 4080752 | 4081576 | issue-7784.rs | | | | | | | | issue-7899.rs | | 4080728 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-7911.rs | | | | | | | | issue-8044.rs | | 4080376 | 4080440 | 4080032 | 4080032 | 4080032 | 4080104 | issue-8171-default-method-self-inherit-builtin-trait.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8248.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8249.rs | | | | | | | | issue-8259.rs | | 4088664 | 4080400 | 4079992 | 4079992 | 4080000 | 4080064 | issue-8351-1.rs | | 4088664 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-8351-2.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8391.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8398.rs | | | | | | | | issue-8401.rs | | 4247664 | 4200592 | 4137992 | 4142072 | 4146808 | 4143464 | issue-8460.rs | | 4086344 | 4081992 | 4079992 | 4079992 | 4079992 | 4080280 | issue-8498.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8506.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8521.rs | | 4080384 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8578.rs | | 4081096 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-868.rs | | 4081800 | 4081976 | 4079992 | 4079992 | 4079992 | 4080600 | issue-8709.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8783.rs | | 4080480 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-8851.rs | | 4086448 | 4082216 | 4080896 | 4080896 | 4080896 | 4080960 | issue-8860.rs | | 4110136 | 4102632 | 4087048 | 4087048 | 4083096 | 4087912 | issue-8898.rs | | 4100792 | 4100416 | 4088600 | 4088600 | 4088600 | 4088800 | issue-9047.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9110.rs | | | | | | | | issue-9123.rs | | | | | | | | issue_9155.rs | | | | | | | | issue-9188.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9243.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9249.rs | | 4090288 | 4085832 | 4080384 | 4080384 | 4080384 | 4080832 | issue-9259.rs | | 4090520 | 4086112 | 4080408 | 4080408 | 4080408 | 4080872 | issue-9394-inherited-trait-calls.rs | | 4255896 | 4251992 | 4133744 | 4137728 | 4134992 | 4142672 | issue-9396.rs | | 4101080 | 4100560 | 4088592 | 4088592 | 4088600 | 4088984 | issue-9446.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9719.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-9737.rs | | 4083400 | 4082592 | 4079992 | 4079992 | 4079992 | 4080056 | issue-979.rs | | 4081112 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-9837.rs | | | | | | | | issue-9906.rs | | 4080760 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-9918.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-9942.rs | | 4081584 | 4081584 | 4079992 | 4079992 | 4080376 | 4080448 | issue-9951.rs | | | | | | | | issue-9968.rs | | 4136048 | 4123224 | 4098488 | 4099128 | 4099480 | 4100200 | istr.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | item-attributes.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | item-name-overload.rs | | 4083304 | 4082624 | 4080008 | 4080008 | 4080008 | 4080080 | iter-cloned-type-inference.rs | | 4101952 | 4093544 | 4088728 | 4088728 | 4088728 | 4088792 | iter-range.rs | | 4096568 | 4086000 | 4081192 | 4081192 | 4081536 | 4081608 | iter-step-overflow-debug.rs | | 4088304 | 4082824 | 4080008 | 4080008 | 4080008 | 4080080 | iter-step-overflow-ndebug.rs | | 4103504 | 4098560 | 4081504 | 4081504 | 4081920 | 4081984 | iter-sum-overflow-debug.rs | | 4089656 | 4085864 | 4080008 | 4080008 | 4080008 | 4080072 | iter-sum-overflow-ndebug.rs | | 4103552 | 4098624 | 4081520 | 4081520 | 4081928 | 4081992 | iter-sum-overflow-overflow-checks.rs | | 4157568 | 4131400 | 4086112 | 4085984 | 4086400 | 4087824 | iter-zip.rs | | 4084680 | 4085080 | 4080000 | 4080000 | 4080000 | 4080208 | ivec-pass-by-value.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | keyword-changes-2012-07-31.rs | | | | | | | | issue-4545.rs | | | | | | | | issue-45731.rs | | 4080504 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46069.rs | | 4080680 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46095.rs | | | | | | | | issue-46519.rs | | 4093456 | 4089144 | 4088576 | 4088576 | 4088576 | 4088648 | issue-46553.rs | | 4094040 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | issue-46845.rs | | 4093504 | 4089472 | 4088832 | 4088832 | 4088832 | 4088904 | issue-46855.rs | | 4086712 | 4082776 | 4080464 | 4080464 | 4080464 | 4081512 | issue-46920-byte-array-patterns.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46959.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-46964.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47139-1.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47139-2.rs | | 4081440 | 4081280 | 4080232 | 4080232 | 4080232 | 4080304 | issue-4734.rs | | 4081528 | 4081352 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4735.rs | | 4088024 | 4083616 | 4080208 | 4080208 | 4080208 | 4080560 | issue-47364.rs | | 4080424 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-4759-1.rs | | 4080720 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47638.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47673.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47703-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47703.rs | | 4080336 | 4080408 | 4080000 | 4080000 | 4080000 | 4080064 | issue-47703-tuple.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47722.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-47789.rs | | 4080784 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48159.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4830.rs | | | | | | | | issue-48508-aux.rs | | 4080416 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48508.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-48551.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4865-1.rs | | 4089024 | 4089288 | 4088640 | 4088640 | 4088640 | 4088784 | issue-4865-2.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-4865-3.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4875.rs | | | | | | | | issue-48984.rs | | 4122736 | 4106416 | 4081776 | 4081776 | 4082760 | 4083368 | issue-49298.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49556.rs | | 4080376 | 4080448 | 4080040 | 4080040 | 4080040 | 4080112 | issue-49588-non-shorthand-field-patterns-in-pattern-macro.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49632.rs | | 4084248 | 4082360 | 4079992 | 4079992 | 4080184 | 4080280 | issue-49685.rs | | 4089088 | 4084688 | 4081256 | 4081256 | 4081256 | 4081608 | issue-49854.rs | | | | | | | | issue-49955-2.rs | | 4122888 | 4106512 | 4081824 | 4081824 | 4082792 | 4083672 | issue-49955.rs | | 4080944 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-49973.rs | | 4101616 | 4101192 | 4093056 | 4093056 | 4093128 | 4093336 | issue-5008-borrowed-traitobject-method-call.rs | | 4082432 | 4082376 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50415.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50442.rs | | 4093352 | 4093416 | 4092776 | 4092776 | 4088680 | 4088752 | issue-5060.rs | | 4080880 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50689.rs | | 4080384 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-50731.rs | | 4812160 | 4349352 | 4178320 | 4178320 | 4178320 | 4178392 | issue-50811.rs | | 4080808 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51185.rs | | 4083808 | 4081320 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51345.rs | | 4086824 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51582.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-51655.rs | | 4081360 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-5239-2.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5243.rs | | 4080456 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5280.rs | | 4080392 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5315.rs | | 4095056 | 4094400 | 4088488 | 4088488 | 4088488 | 4088552 | issue-5321-immediates-with-bare-self.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5353.rs | | | | | | | | issue-5518.rs | | | | | | | | issue-5521.rs | | 4085184 | 4081056 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5530.rs | | 4089912 | 4085576 | 4080296 | 4080296 | 4080296 | 4080496 | issue-5550.rs | | 4080560 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5554.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5572.rs | | 4100528 | 4100256 | 4093464 | 4093464 | 4093464 | 4093632 | issue-5688.rs | | 4093592 | 4093552 | 4088728 | 4088728 | 4088728 | 4088792 | issue-5708.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5741.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5754.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-5791.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5900.rs | | 4081400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5917.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5950.rs | | 4080520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5988.rs | | 4088712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-5997.rs | | 4081408 | 4081232 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6117.rs | | 4130568 | 4116952 | 4089120 | 4089120 | 4089400 | 4093920 | issue-6128.rs | | 4088696 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6130.rs | | 4110392 | 4102968 | 4081048 | 4081048 | 4081248 | 4081944 | issue-6153.rs | | 4080840 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6157.rs | | 4081304 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6334.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6341.rs | | 4093392 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-6344-let.rs | | 4093400 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-6344-match.rs | | 4089712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6449.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6470.rs | | 4086160 | 4081800 | 4080232 | 4080232 | 4080232 | 4080296 | issue-6892.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6898.rs | | | | | | | | issue-6919.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-6991.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3895.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38987.rs | | 4093504 | 4089472 | 4088600 | 4088600 | 4088600 | 4088672 | issue-3904.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39089.rs | | 4089048 | 4089008 | 4088464 | 4088464 | 4088464 | 4088528 | issue-39292.rs | | 4092728 | 4087624 | 4080856 | 4080856 | 4081000 | 4081352 | issue-3935.rs | | 4105456 | 4099096 | 4082112 | 4082112 | 4082440 | 4082872 | issue-39367.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39467.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39548.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-39709.rs | | 4093864 | 4093936 | 4093256 | 4093256 | 4093256 | 4093320 | issue-39720.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3979-2.rs | | 4081872 | 4081816 | 4080000 | 4080000 | 4080000 | 4080072 | issue-3979-generics.rs | | 4081664 | 4081632 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3979.rs | | | | | | | | issue-3979-xcrate.rs | | 4083320 | 4083008 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39808.rs | | | | | | | | issue-39823.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39827.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3991.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-39984.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40003.rs | | 4080600 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40085.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40136.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40235.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4025.rs | | 4123032 | 4123096 | 4122536 | 4122536 | 4122536 | 4122600 | issue-40408.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40469.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40770.rs | | 4080776 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40847.rs | | 4089152 | 4084616 | 4081232 | 4081232 | 4081232 | 4081432 | issue-40951.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-40962.rs | | | | | | | | issue-41053.rs | | 4080496 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4107.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41213.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41272.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41298.rs | | | | | | | | issue-41394.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41479.rs | | 4080824 | 4080696 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41498.rs | | 4080512 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41604.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41628.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41677.rs | | 4110920 | 4101704 | 4086704 | 4090800 | 4086848 | 4087048 | issue-41696.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41744.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41803.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | issue-41849-variance-req.rs | | 4081384 | 4081176 | 4079992 | 4079992 | 4079992 | 4080064 | issue-41888.rs | | 4080360 | 4080432 | 4080024 | 4080024 | 4080024 | 4080096 | issue-41936-variance-coerce-unsized-cycle.rs | | | | | | | | issue-42007.rs | | | | | | | | issue-4208.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42148.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42210.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4228.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42453.rs | | 4117712 | 4105272 | 4081328 | 4081328 | 4081752 | 4082360 | issue-42463.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42467.rs | | 4099008 | 4099072 | 4093560 | 4093560 | 4093632 | 4093704 | issue-4252.rs | | 4081488 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42552.rs | | 4090960 | 4085936 | 4079992 | 4079992 | 4079992 | 4081784 | issue-42679.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42747.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-42956.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43057.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43132.rs | | 4093296 | 4089264 | 4088600 | 4088600 | 4088600 | 4088672 | issue-43205.rs | | 4081168 | 4080944 | 4080168 | 4080168 | 4080168 | 4080232 | issue-43291.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43357.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43483.rs | | 4081968 | 4081920 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43692.rs | | 4089888 | 4084800 | 4081608 | 4081608 | 4081816 | 4081880 | issue-43853.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4387.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43910.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-43923.rs | | 4099488 | 4094384 | 4088480 | 4088480 | 4088480 | 4088544 | issue-4401.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44056.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44247.rs | | 4101832 | 4088936 | 4088464 | 4088464 | 4088464 | 4088528 | issue-44333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44373.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44402.rs | | 4300840 | 4283808 | 4160096 | 4168032 | 4157736 | 4165912 | issue-4446.rs | | 4293640 | 4277544 | 4147928 | 4155856 | 4145536 | 4149800 | issue-4448.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-4464.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44730.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-44851.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-45152.rs | | 4138648 | 4129608 | 4098584 | 4098584 | 4099152 | 4099872 | issue-4541.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-45425.rs | | 4091512 | 4091640 | 4081656 | 4081656 | 4081784 | 4082224 | issue-4542.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3424.rs | | 4080424 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3429.rs | | 4110360 | 4100440 | 4080424 | 4080304 | 4080528 | 4080736 | issue-34427.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34503.rs | | 4080432 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34569.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34571.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34751.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34780.rs | | | | | | | | issue-34796.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34798.rs | | | | | | | | issue-34932.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3500.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35376.rs | | 4093376 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-35423.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35546.rs | | 4124936 | 4118952 | 4088344 | 4088344 | 4089440 | 4094304 | issue-3556.rs | | 4212248 | 4181064 | 4118160 | 4122256 | 4118912 | 4121032 | issue-3559.rs | | 4080432 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35600.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3563-2.rs | | 4089720 | 4084336 | 4079992 | 4079992 | 4079992 | 4081312 | issue-3574.rs | | 4081024 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-35815.rs | | 4101824 | 4088480 | 4080944 | 4080944 | 4081160 | 4081664 | issue-36023.rs | | 4080536 | 4080424 | 4080016 | 4080016 | 4080016 | 4080088 | issue-36036-associated-type-layout.rs | | 4081272 | 4081240 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36053.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36075.rs | | 4080440 | 4080424 | 4080016 | 4080016 | 4080016 | 4080080 | issue-36139-normalize-closure-sig.rs | | 4084664 | 4084424 | 4079992 | 4079992 | 4079992 | 4080288 | issue-36260.rs | | 4082200 | 4081264 | 4080008 | 4080008 | 4080008 | 4080080 | issue-36278-prefix-nesting.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36381.rs | | 4082400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36401.rs | | 4082384 | 4081792 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36474.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3656.rs | | 4103504 | 4103976 | 4088792 | 4088792 | 4088792 | 4088992 | issue-36744-bitcast-args-if-needed.rs | | 4080344 | 4080416 | 4080008 | 4080008 | 4080008 | 4080072 | issue-36744-without-calls.rs | | | | | | | | issue-36768.rs | | 4090272 | 4088160 | 4080608 | 4080608 | 4080896 | 4081096 | issue-36786-resolve-call.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36792.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36816.rs | | 4081520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3683.rs | | 4088712 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36856.rs | | 4082128 | 4080656 | 4079992 | 4079992 | 4079992 | 4080064 | issue-36936.rs | | | | | | | | issue-36954.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3702.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37109.rs | | 4093192 | 4089168 | 4088600 | 4088600 | 4088600 | 4088672 | issue-37175.rs | | 4082760 | 4082824 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37222.rs | | 4123304 | 4123344 | 4122552 | 4122552 | 4122552 | 4122616 | issue-3743.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37598.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37655.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37686.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37725.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-37733.rs | | 4088648 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38002.rs | | 4116920 | 4103552 | 4080400 | 4080400 | 4080512 | 4080784 | issue-38033.rs | | 4081176 | 4081120 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38074.rs | | 4080448 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38091.rs | | | | | | | | issue-38190.rs | | 4101856 | 4100464 | 4093736 | 4093736 | 4089784 | 4089856 | issue-38437.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-3847.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38556.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38727.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-3874.rs | | 4080360 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-38763.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-3888-2.rs | | 4093144 | 4089048 | 4088488 | 4088488 | 4088488 | 4088552 | issue-38942.rs | | 4081792 | 4081088 | 4079992 | 4079992 | 4080232 | 4080296 | issue-29092.rs | | 4122336 | 4102904 | 4079992 | 4079992 | 4096016 | 4096296 | issue-29147.rs | | 4108400 | 4100392 | 4079992 | 4079992 | 4080328 | 4080696 | issue-29166.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29227.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29276.rs | | 4081544 | 4081520 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2936.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-29466.rs | | | | | | | | issue-29485.rs | | 4150832 | 4143808 | 4116960 | 4116640 | 4117200 | 4113904 | issue-29488.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29516.rs | | 4080408 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29522.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29540.rs | | 4100024 | 4096824 | 4086024 | 4086160 | 4082136 | 4082672 | issue-29663.rs | | 4093248 | 4089152 | 4088592 | 4088592 | 4088592 | 4088656 | issue-29668.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29710.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29740.rs | | 4171792 | 4151344 | 4086128 | 4086128 | 4086976 | 4089184 | issue-29746.rs | | 4089488 | 4086008 | 4080040 | 4080040 | 4080472 | 4080680 | issue-29844.rs | | 4140216 | 4128096 | 4098040 | 4098040 | 4098424 | 4099200 | issue-2989.rs | | 4080840 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29914-2.rs | | 4080784 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29914-3.rs | | 4080840 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29914.rs | | 4090512 | 4085520 | 4081504 | 4081512 | 4081752 | 4081816 | issue-29948.rs | | 4142216 | 4128688 | 4098232 | 4098120 | 4098432 | 4099440 | issue-30018-nopanic.rs | | 4132272 | 4128664 | 4099744 | 4099744 | 4100088 | 4100616 | issue-30018-panic.rs | | 4089256 | 4083648 | 4079992 | 4079992 | 4079992 | 4080344 | issue-30081.rs | | | | | | | | issue-3012-2.rs | | 4100864 | 4087576 | 4079992 | 4079992 | 4079992 | 4081528 | issue-30240.rs | | 4179488 | 4146544 | 4098696 | 4098688 | 4099368 | 4100544 | issue-3026.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30371.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3037.rs | | 4313128 | 4288248 | 4175792 | 4175928 | 4174112 | 4181192 | issue-30490.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3052.rs | | 4082168 | 4081480 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30530.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30615.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30756.rs | | 4081096 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-30891.rs | | 4081168 | 4081232 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3091.rs | | 4093536 | 4089504 | 4088832 | 4088832 | 4088832 | 4088896 | issue-3109.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31260.rs | | 4099760 | 4099856 | 4089120 | 4089120 | 4089120 | 4089264 | issue-31267-additional.rs | | 4083416 | 4084296 | 4080464 | 4080464 | 4080576 | 4081000 | issue-31267.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31299.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3149.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31597.rs | | | | | | | | issue-31702.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-31776.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32008.rs | | 4099488 | 4094384 | 4088480 | 4088480 | 4088480 | 4088544 | issue-3211.rs | | 4080656 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-3220.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32292.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32324.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32389.rs | | | | | | | | issue-32518.rs | | 4218680 | 4192528 | 4142752 | 4142664 | 4144088 | 4150240 | issue-32805.rs | | 4080496 | 4080560 | 4079992 | 4079992 | 4079992 | 4080064 | issue-32947.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33096.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33185.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33187.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-33202.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33287.rs | | 4091960 | 4092544 | 4080496 | 4080496 | 4080496 | 4081856 | issue-33387.rs | | 4080904 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-333.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33461.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33498.rs | | 4081272 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33687.rs | | 4320376 | 4290312 | 4179312 | 4179584 | 4178048 | 4182496 | issue-33770.rs | | 4144440 | 4138208 | 4098328 | 4098328 | 4099240 | 4100456 | issue-3389.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-33992.rs | | 4086640 | 4082200 | 4080320 | 4080320 | 4080320 | 4080384 | issue-34053.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34074.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-34194.rs | | | | | | | | issue-2631-b.rs | | 4081872 | 4081744 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26322.rs | | 4089064 | 4089072 | 4088464 | 4088464 | 4088464 | 4088528 | issue-2633.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2642.rs | | 4082952 | 4082024 | 4080472 | 4080472 | 4080472 | 4080544 | issue-26468.rs | | 4088952 | 4088992 | 4088448 | 4088448 | 4088448 | 4088512 | issue-26484.rs | | 4081744 | 4081472 | 4079992 | 4079992 | 4080440 | 4080512 | issue-26641.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26646.rs | | 4141808 | 4129776 | 4100144 | 4100144 | 4100456 | 4100992 | issue-26655.rs | | 4082152 | 4082128 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26709.rs | | 4082168 | 4081760 | 4079992 | 4079992 | 4079992 | 4080304 | issue-26802.rs | | 4091792 | 4085448 | 4079992 | 4079992 | 4079992 | 4080128 | issue-26805.rs | | 4080344 | 4080408 | 4080008 | 4080008 | 4080008 | 4080072 | issue-26873-multifile.rs | | 4080344 | 4080408 | 4080000 | 4080000 | 4080000 | 4080072 | issue-26873-onefile.rs | | 4081256 | 4080688 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26905.rs | | 4083792 | 4083016 | 4079992 | 4079992 | 4079992 | 4080200 | issue-26996.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26997.rs | | 4087992 | 4083080 | 4079992 | 4079992 | 4079992 | 4080200 | issue-27021.rs | | 4080896 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-27054-primitive-binary-ops.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27060.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27105.rs | | | | | | | | issue-2723-b.rs | | 4089080 | 4085136 | 4079992 | 4079992 | 4079992 | 4080272 | issue-27240.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27268.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27281.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27320.rs | | 4090152 | 4084376 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2735-2.rs | | 4090152 | 4084376 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2735-3.rs | | 4083032 | 4082008 | 4080008 | 4080008 | 4080008 | 4080080 | issue-27401-dropflag-reinit.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4079992 | 4080064 | issue-2748-a.rs | | 4081440 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2748-b.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27583.rs | | 4094936 | 4094008 | 4092576 | 4092576 | 4088480 | 4088544 | issue-27639.rs | | 4141576 | 4133336 | 4123448 | 4123448 | 4123640 | 4124080 | issue-27859.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27889.rs | | 4081288 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27890.rs | | 4082744 | 4082904 | 4079992 | 4079992 | 4079992 | 4080064 | issue-27901.rs | | 4086160 | 4081520 | 4080264 | 4080264 | 4080264 | 4080328 | issue-27997.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2804-2.rs | | 4080520 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28181.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28279.rs | | 4089176 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28550.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28561.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28600.rs | | | | | | | | issue-28676.rs | | 4085552 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28777.rs | | 4089928 | 4081552 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28828.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28839.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28871.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28936.rs | | 4144080 | 4133336 | 4099824 | 4099824 | 4100160 | 4100824 | issue-28950.rs | | 4080816 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2895.rs | | 4080928 | 4080912 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28983.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-28999.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29030.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29037.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-29048.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2904.rs | | 4089296 | 4084928 | 4079992 | 4079992 | 4079992 | 4080200 | issue-29053.rs | | 4081248 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-29071-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080056 | issue-29071.rs | | 4102256 | 4101872 | 4098144 | 4098144 | 4098144 | 4098352 | issue-23781.rs | | 4080832 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23808.rs | | | | | | | | issue-2380-b.rs | | 4125928 | 4121624 | 4115744 | 4115744 | 4115744 | 4116248 | issue-23825.rs | | 4099608 | 4099368 | 4089128 | 4089128 | 4089128 | 4089280 | issue-23833.rs | | 4109184 | 4104032 | 4079992 | 4079992 | 4081656 | 4082088 | issue-2383.rs | | 4093072 | 4089040 | 4088480 | 4088480 | 4088480 | 4088544 | issue-23891.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23898.rs | | 4081496 | 4081376 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23958.rs | | 4086944 | 4080416 | 4080016 | 4080016 | 4080016 | 4080080 | issue-23968-const-not-overflow.rs | | 4081552 | 4081616 | 4079992 | 4079992 | 4079992 | 4080064 | issue-23992.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24085.rs | | 4081224 | 4081288 | 4079992 | 4079992 | 4080184 | 4080248 | issue-24086.rs | | | | | | | | issue-2414-c.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24161.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24227.rs | | 4081360 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2428.rs | | 4080544 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24308.rs | | 4330448 | 4291280 | 4182488 | 4182616 | 4180448 | 4186552 | issue-24313.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24353.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24389.rs | | | | | | | | issue-24434.rs | | 4080576 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2445-b.rs | | 4080568 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2445.rs | | 4089464 | 4085064 | 4080816 | 4080816 | 4080816 | 4081088 | issue-24533.rs | | | | | | | | issue-24535-allow-mutable-borrow-in-match-guard.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24589.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2463.rs | | | | | | | | issue-2472.rs | | 4081000 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24779.rs | | 4082512 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-24805-dropck-itemless.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-2487-a.rs | | 4080800 | 4080416 | 4080008 | 4080008 | 4080016 | 4080080 | issue-24945-repeat-dash-opts.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24947.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-24954.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2502.rs | | 4132728 | 4129656 | 4100328 | 4100320 | 4100680 | 4101192 | issue-25089.rs | | 4083488 | 4084352 | 4080464 | 4080464 | 4080576 | 4080856 | issue-25145.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25180.rs | | | | | | | | issue-25185.rs | | | | | | | | issue-2526-a.rs | | 4080464 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25279.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25339.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25343.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25394.rs | | | | | | | | issue-25467.rs | | 4086920 | 4082792 | 4081048 | 4081048 | 4081168 | 4081312 | issue-25497.rs | | 4080456 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2550.rs | | 4090024 | 4085384 | 4079992 | 4079992 | 4080472 | 4080544 | issue-25515.rs | | 4081360 | 4081320 | 4080008 | 4080008 | 4080008 | 4080248 | issue-25549-multiple-drop.rs | | 4080488 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25679.rs | | 4081528 | 4081256 | 4080160 | 4080160 | 4080160 | 4080224 | issue-25693.rs | | 4080336 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-25700-1.rs | | 4080928 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-25700-2.rs | | 4080352 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-25746-bool-transmute.rs | | 4081448 | 4081224 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25757.rs | | 4093400 | 4089368 | 4088584 | 4088584 | 4088584 | 4088648 | issue-25810.rs | | 4088608 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-25916.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26095.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2611-3.rs | | 4080472 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26127.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26205.rs | | 4090072 | 4081928 | 4079992 | 4079992 | 4079992 | 4080064 | issue-26251.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21520.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21622.rs | | 4178680 | 4158432 | 4140880 | 4140792 | 4137040 | 4138600 | issue-21634.rs | | 4092328 | 4088960 | 4079992 | 4079992 | 4080384 | 4080720 | issue-21655.rs | | 4088880 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21721.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21726.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21891.rs | | 4122312 | 4114512 | 4093304 | 4093304 | 4089392 | 4094016 | issue-2190-1.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-21909.rs | | 4093800 | 4089592 | 4092576 | 4092576 | 4092576 | 4088608 | issue-21922.rs | | 4094256 | 4094408 | 4088584 | 4088584 | 4088584 | 4088656 | issue-22008.rs | | 4097224 | 4089600 | 4079992 | 4079992 | 4080496 | 4080960 | issue-22036.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22066.rs | | 4111016 | 4111008 | 4106080 | 4106080 | 4106080 | 4106144 | issue-2214.rs | | 4093448 | 4093512 | 4088664 | 4088664 | 4088664 | 4088728 | issue-2216.rs | | 4123192 | 4123096 | 4122536 | 4122536 | 4122536 | 4122608 | issue-22258.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22356.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22375.rs | | 4100032 | 4100096 | 4088992 | 4088992 | 4089096 | 4089248 | issue-22403.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22426.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22463.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22471.rs | | 4081040 | 4080416 | 4080008 | 4080008 | 4080008 | 4080080 | issue-22536-copy-mustnt-zero.rs | | 4101952 | 4089256 | 4088600 | 4088600 | 4088600 | 4088672 | issue-22546.rs | | 4083392 | 4083080 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22629.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22777.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22781.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22814.rs | | 4080400 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22828.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-2284.rs | | 4093384 | 4089160 | 4088600 | 4088600 | 4088600 | 4088664 | issue-22864-1.rs | | 4122984 | 4116312 | 4098024 | 4098024 | 4098112 | 4098640 | issue-22864-2.rs | | 4080336 | 4080400 | 4079992 | 4079992 | 4079992 | 4080064 | issue-22894.rs | | 4080520 | 4080400 | 4080000 | 4080000 | 4080000 | 4080064 | issue-22992-2.rs | | 4099384 | 4099040 | 4092768 | 4092768 | 4092768 | 4093688 | issue-22992.rs | | 4192944 | 4160048 | 4099448 | 4099448 | 4100432 | 4102312 | issue-23036.rs |

the files I tested are in src/test/run-pass

I wonder if z performing so bad is due to how inlining is handled.

jonas-schievink commented 6 years ago

Yeah this has cropped up in the past, for example here https://github.com/rust-lang/rust/issues/49260#issuecomment-375285830, and the embedded WG discussed this here: https://github.com/rust-embedded/wg/issues/69

Maybe it's finally time to adjust LLVM's inlining thresholds to better suit Rust.