about summary refs log tree commit diff
path: root/src/test
AgeCommit message (Expand)AuthorLines
2020-02-17parse: recover `mut (x @ y)` as `(mut x @ mut y)`.Mazdak Farrokhzad-11/+21
2020-02-17Rename `FunctionRetTy` to `FnRetTy`Yuki Okushi-1/+1
2020-02-16Auto merge of #67885 - tobithiel:fix_group_lint_allow_override, r=Mark-Simula...bors-0/+7
2020-02-16Auto merge of #68814 - Aaron1011:fix/proc-macro-order-two, r=petrochenkovbors-1/+22
2020-02-15Auto merge of #68668 - GuillaumeGomez:struct-variant-field-search, r=ollie27bors-0/+15
2020-02-15Record proc macro harness order for use during metadata deserializationAaron Hill-1/+22
2020-02-15Auto merge of #69168 - brainlock:test-textrel-regression, r=Mark-Simulacrum,t...bors-0/+31
2020-02-15Rollup merge of #69180 - Aaron1011:feature/comma-struct-init, r=petrochenkovDylan DPC-2/+39
2020-02-15Rollup merge of #69166 - JohnTitor:ice-const-enum, r=matthewjasperDylan DPC-0/+15
2020-02-15Rollup merge of #69154 - JohnTitor:fix-macro-ices, r=petrochenkovDylan DPC-0/+40
2020-02-14Suggest a comma if a struct initializer field fails to parseAaron Hill-2/+39
2020-02-15Auto merge of #67681 - matthewjasper:infer-regions-in-borrowck, r=nikomatsakisbors-441/+641
2020-02-14Fix tests after rebaseMatthew Jasper-50/+80
2020-02-14Fix and test nested impl TraitMatthew Jasper-0/+16
2020-02-14Update testsMatthew Jasper-231/+124
2020-02-14Handle equal regions in opaque type inferenceMatthew Jasper-0/+57
2020-02-14Update testsMatthew Jasper-157/+291
2020-02-15Avoid calling `fn_sig` on closuresYuki Okushi-0/+40
2020-02-15Rollup merge of #69128 - Centril:fix-69103, r=davidtwcoYuki Okushi-0/+44
2020-02-15Rollup merge of #68856 - Centril:or-pat-ref-pat, r=matthewjasperYuki Okushi-13/+383
2020-02-15Rollup merge of #68129 - varkor:infer-binary-operand-behind-reference, r=niko...Yuki Okushi-0/+30
2020-02-14Call `is_freeze` less in unsafety-checkingMatthew Jasper-0/+32
2020-02-14Check associated opaque types don't use unconstrained lifetimesMatthew Jasper-11/+42
2020-02-14Explain a testMatthew Jasper-2/+9
2020-02-14add regression test for issue #68794Alberto Piai-0/+31
2020-02-14Check `has_typeck_tables` before calling `typeck_tables_of`Yuki Okushi-0/+15
2020-02-13Rollup merge of #68938 - Areredify:gat_lifetime_shadowing, r=estebankDylan DPC-4/+21
2020-02-13parser: misc small item related improvements & cleanups.Mazdak Farrokhzad-99/+102
2020-02-13parser: introduce `parse_item_kind` as central `ItemInfo` logic.Mazdak Farrokhzad-5/+12
2020-02-13parser: unify item list parsing.Mazdak Farrokhzad-14/+32
2020-02-13fix extra subslice loweringMazdak Farrokhzad-0/+44
2020-02-13parser: add test for 'extern crate async'Mazdak Farrokhzad-0/+12
2020-02-13ast_validation: tweak diagnostic outputMazdak Farrokhzad-69/+73
2020-02-13parser: move `ban_async_in_2015` to `fn` parsing & improve it.Mazdak Farrokhzad-0/+36
2020-02-13parser: fuse free `fn` parsing together.Mazdak Farrokhzad-95/+124
2020-02-13parser_fn_front_matter: allow `const .. extern`Mazdak Farrokhzad-53/+51
2020-02-13IsAsync -> enum Async { Yes { span: Span, .. }, No }Mazdak Farrokhzad-8/+22
2020-02-13Constness -> enum Const { Yes(Span), No }Mazdak Farrokhzad-13/+43
2020-02-13Rollup merge of #69082 - estebank:boxfuture-box-pin, r=tmandryDylan DPC-2/+51
2020-02-13Rollup merge of #69048 - estebank:hrlt-assoc, r=nagisaDylan DPC-8/+145
2020-02-13Rollup merge of #69008 - Aaron1011:fix/opaque-ty-parent, r=matthewjasperDylan DPC-0/+32
2020-02-13Rollup merge of #67642 - Mark-Simulacrum:relax-bounds, r=AmanieuDylan DPC-15/+5
2020-02-12Add trait `Self` filtering to `rustc_on_unimplemented`Esteban Küber-62/+16
2020-02-12Account for `Pin::new(_)` and `Pin::new(Box::new(_))` when `Box::pin(_)` woul...Esteban Küber-12/+15
2020-02-12Account for `Box::new(impl Future)` and emit help `use Box::pin`Esteban Küber-19/+61
2020-02-12Remove std lib `Span` from expected boxed future testEsteban Küber-28/+19
2020-02-12When expecting `BoxFuture` and using `async {}`, suggest `Box::pin`Esteban Küber-0/+59
2020-02-12Auto merge of #69105 - Dylan-DPC:rollup-n73lh5h, r=Dylan-DPCbors-62/+241
2020-02-12Rollup merge of #69002 - RalfJung:miri-op-overflow, r=oli-obk,wesleywiserDylan DPC-52/+209
2020-02-12Rollup merge of #68981 - estebank:silence, r=davidtwcoDylan DPC-6/+28