rust/src/librustc_typeck
Mazdak Farrokhzad e5435d97ea
Rollup merge of #58894 - GuillaumeGomez:invalid-lifetime-bounds, r=estebank
Fix invalid bounds string generation in rustdoc

Fixes #58737.

Very weird and I'm not sure this is the best fix around. However, trying to fix it beforehand seems overly complicated compared to the gain (in `clean`, it wouldn't change anything since we **have to** return something so that wouldn't work, and in `hir`, I'm afraid I'd break something else for very little gain).

Also, I wasn't able to make a small code to reproduce the issue. The only way to test is to document `crossbeam` directly and check the `Scope` struct...

r? @QuietMisdreavus
2019-04-06 00:14:40 +02:00
..
check Deny internal lints on librustc_typeck 2019-04-03 19:18:07 +02:00
coherence Auto merge of #59068 - ljedrz:kill_off_NodeId_stragglers, r=Zoxc 2019-03-23 17:34:18 +00:00
outlives HirIdification: replace NodeId method calls 2019-03-07 09:22:43 +01:00
variance Separate variant id and variant constructor id. 2019-03-24 12:10:16 +03:00
astconv.rs Compare Tys directly instead of their TyKinds 2019-04-03 19:18:07 +02:00
Cargo.toml librustc_typeck => 2018 2019-02-08 22:30:58 +09:00
check_unused.rs HirIdification: replace NodeId method calls 2019-03-07 09:22:43 +01:00
collect.rs Rollup merge of #58894 - GuillaumeGomez:invalid-lifetime-bounds, r=estebank 2019-04-06 00:14:40 +02:00
constrained_generic_params.rs Rename type_parameters to generics and so on 2019-03-29 00:28:07 +00:00
diagnostics.rs Update documentation. 2019-03-29 11:03:35 +01:00
impl_wf_check.rs Rename type_parameters to generics and so on 2019-03-29 00:28:07 +00:00
lib.rs Deny internal lints on librustc_typeck 2019-04-03 19:18:07 +02:00
namespace.rs
README.md
structured_errors.rs Rollup merge of #57856 - lzutao:fix-old-first-edition, r=steveklabnik 2019-02-14 02:41:16 +01:00

For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc guide.