| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-01-11 | Rollup merge of #57483 - petrochenkov:beta, r=pietroalbini | Pietro Albini | -236/+167 | |
| 2019-01-11 | use the correct supertrait substitution in `object_ty_for_trait` | Ariel Ben-Yehuda | -0/+23 | |
| Fixes #57156. | ||||
| 2019-01-10 | Fix rebase | Vadim Petrochenkov | -43/+27 | |
| 2019-01-10 | Fix a hole in generic parameter import future-proofing | Vadim Petrochenkov | -7/+42 | |
| Add some tests for buggy derive helpers | ||||
| 2019-01-10 | Stabilize `uniform_paths` | Vadim Petrochenkov | -169/+29 | |
| 2019-01-10 | resolve: Prohibit use of imported tool modules | Vadim Petrochenkov | -6/+44 | |
| 2019-01-10 | resolve: Prohibit use of imported non-macro attributes | Vadim Petrochenkov | -4/+23 | |
| 2019-01-10 | resolve: Prohibit use of uniform paths in macros originating from 2015 edition | Vadim Petrochenkov | -1/+1 | |
| ...while still keeping ambiguity errors future-proofing for uniform paths. This corner case is not going to be stabilized for 1.32 and needs some more general experiments about retrofitting 2018 import rules to 2015 edition | ||||
| 2019-01-10 | resolve: Assign `pub` and `pub(crate)` visibilities to `macro_rules` items | Vadim Petrochenkov | -39/+13 | |
| 2019-01-10 | resolve: Fix an ICE in import validation | Vadim Petrochenkov | -0/+33 | |
| 2019-01-10 | resolve: Avoid "self-confirming" resolutions in import validation | Vadim Petrochenkov | -15/+3 | |
| 2019-01-04 | Wf-check the output type of a function in MIR-typeck | Matthew Jasper | -0/+38 | |
| 2019-01-04 | resolve: Never override real bindings with `Def::Err`s from error recovery | Vadim Petrochenkov | -26/+29 | |
| 2019-01-04 | resolve: Fix another ICE in import validation | Vadim Petrochenkov | -0/+12 | |
| 2019-01-01 | fix test output | Pietro Albini | -10/+2 | |
| 2018-12-31 | Corrected expected test err messages. | Alexander Regueiro | -10/+10 | |
| 2018-12-31 | Added test for issue #56835. | Alexander Regueiro | -0/+25 | |
| 2018-12-31 | Fixed issue #56199. | Alexander Regueiro | -0/+53 | |
| 2018-12-31 | improve tests as suggested by review comments | Ariel Ben-Yehuda | -2/+92 | |
| 2018-12-31 | fix trait objects with a Self-having projection va | Ariel Ben-Yehuda | -0/+57 | |
| This follows ALT2 in the issue. Fixes #56288. | ||||
| 2018-12-31 | Update tests to changes on master | Oliver Scherer | -2/+10 | |
| 2018-12-31 | Also test projections | Oliver Scherer | -1/+18 | |
| 2018-12-31 | Fix a recently introduces regression | Oliver Scherer | -5/+43 | |
| 2018-12-31 | Remove a wrong multiplier on relocation offset computation | Oliver Scherer | -0/+9 | |
| 2018-12-04 | Auto merge of #56486 - matthewjasper:propagate-all-closure-bounds, r=pnkfelix | bors | -0/+42 | |
| Propagate all closure requirements to the caller Closes #56477 This should be backported to 1.32 if it doesn't make the cut. r? @pnkfelix cc @nikomatsakis | ||||
| 2018-12-04 | Update ui tests | Oliver Scherer | -28/+29 | |
| 2018-12-04 | Remove unused stderr file | Oliver Scherer | -49/+0 | |
| 2018-12-04 | Newlines.... newlines everywhere | Oliver Scherer | -1/+1 | |
| 2018-12-04 | Add a test ensuring that we don't regress this | Oliver Scherer | -0/+6 | |
| 2018-12-04 | Update tests | Oliver Scherer | -252/+387 | |
| 2018-12-03 | Propagate all closure requirements to the caller | Matthew Jasper | -0/+42 | |
| 2018-12-03 | Rollup merge of #56412 - petrochenkov:extself, r=Centril | kennytm | -1/+1 | |
| Update tracking issue for `extern_crate_self` | ||||
| 2018-12-03 | Rollup merge of #56395 - Centril:stabilize-dbg-macro, r=SimonSapin | kennytm | -34/+12 | |
| Stabilize dbg!(...) Per FCP in https://github.com/rust-lang/rust/issues/54306 (which is ~1 day from completion). r? @SimonSapin The PR is fairly isolated so a rollup should probably work. | ||||
| 2018-12-03 | Rollup merge of #56366 - alexreg:stabilise-self_in_typedefs, r=Centril | kennytm | -34/+15 | |
| Stabilize self_in_typedefs feature [**Tracking Issue**](https://github.com/rust-lang/rust/issues/49303) r? @centril | ||||
| 2018-12-02 | Auto merge of #56110 - varkor:inhabitedness-union-enum, r=cramertj | bors | -37/+81 | |
| Consider references and unions potentially inhabited during privacy-respecting inhabitedness checks It isn't settled exactly how references to uninhabited types and unions of uninhabited types should act, but we should be more conservative here, as it's likely it will be permitted to soundly have values of such types. This will also be more important in light of the changes at https://github.com/rust-lang/rust/pull/54125. cc @RalfJung | ||||
| 2018-12-01 | Update tracking issue for `extern_crate_self` | Vadim Petrochenkov | -1/+1 | |
| 2018-12-01 | resolve: Support aliasing local crate root in extern prelude | Vadim Petrochenkov | -0/+51 | |
| 2018-12-01 | stabilize std::dbg!(...) | Mazdak Farrokhzad | -34/+12 | |
| 2018-11-30 | Updated ui tests. | Alexander Regueiro | -5/+15 | |
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -29/+0 | |
| 2018-12-01 | Rollup merge of #56337 - phansch:fix_const_ice, r=oli-obk | kennytm | -0/+28 | |
| Fix const_fn ICE with non-const function pointer Fixes #56164 | ||||
| 2018-12-01 | Rollup merge of #56365 - alexreg:stabilise-self_struct_ctor, r=Centril | kennytm | -84/+23 | |
| Stabilize self_struct_ctor feature. [**Tracking Issue**](https://github.com/rust-lang/rust/issues/51994) | ||||
| 2018-11-30 | Moved feature-gate tests to correct dir. | Alexander Regueiro | -0/+0 | |
| 2018-11-30 | Updated ui tests. | Alexander Regueiro | -4/+3 | |
| 2018-11-30 | Removed feature gate. | Alexander Regueiro | -83/+4 | |
| 2018-11-30 | Fix const_fn ICE with non-const function pointer | Philipp Hansch | -0/+28 | |
| 2018-11-30 | tests: use alloc instead of libc in unnecessary-extern-crate, to make it ↵ | Eduard-Mihai Burtescu | -33/+29 | |
| work on wasm. | ||||
| 2018-11-30 | tests: use `force-host` and `no-prefer-dynamic` in all proc_macro tests. | Eduard-Mihai Burtescu | -25/+53 | |
| 2018-11-30 | tests: move all proc_macro tests from -fulldeps. | Eduard-Mihai Burtescu | -0/+2866 | |
| 2018-11-30 | Changed test for issue 56202 to compile-pass. | Alexander Regueiro | -7/+4 | |
