Skip to content

Rollup of 10 pull requests #54763

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
317163a
Add suggestions for unresolved imports.
davidtwco Sep 20, 2018
c50006d
Removed hardcoded crate.
davidtwco Sep 28, 2018
1525e97
Update tests to demonstrate 2015 behaviour.
davidtwco Sep 28, 2018
d99e7c2
Update Cargo's submodule
alexcrichton Sep 28, 2018
0a3bd9b
Use impl_header_lifetime_elision in libcore
scottmcm Sep 3, 2018
8d6bee3
UI test updates
scottmcm Sep 30, 2018
d4840da
Activate the feature in the libcore tests too
scottmcm Sep 30, 2018
1b22bef
make run-pass tests with empty main just compile-pass tests
RalfJung Sep 30, 2018
0b76a97
Re-export `getopts` so custom drivers can reference it.
DiamondLovesYou Sep 30, 2018
1397836
do not promote comparing function pointers
RalfJung Sep 30, 2018
4cbfc93
also compile-fail test fn ptr comparison promotion
RalfJung Sep 30, 2018
b871293
The `proc_macro_quote` feature now lives at #54722
alexcrichton Oct 1, 2018
3ced475
The `proc_macro_raw_ident` feature is now at #54723
alexcrichton Oct 1, 2018
7662523
Span::def_site() is now at #54724
alexcrichton Oct 1, 2018
526ca7c
All `proc_macro_span` APIs tracked at #54725 now
alexcrichton Oct 1, 2018
6152144
Extra proc macro gates are now at #54727
alexcrichton Oct 1, 2018
9e2d6e1
Add `crate::` to trait suggestions in Rust 2018.
davidtwco Sep 26, 2018
4cbd397
Move prelude crate names into `Session`.
davidtwco Sep 27, 2018
02357e4
Attempt to resolve linking issues.
davidtwco Sep 27, 2018
e536e64
Consolidate pattern check errors
PramodBisht Oct 2, 2018
454b14a
move some more tests
RalfJung Oct 2, 2018
092bf2b
make `CStr::from_bytes_with_nul_unchecked()` a const fn
abonander Oct 2, 2018
e0caaec
make `CStr::from_bytes_with_nul_unchecked()` a const fn
abonander Oct 2, 2018
294e467
Rollup merge of #54269 - PramodBisht:issue/53840, r=estebank
pietroalbini Oct 2, 2018
a2ffe02
Rollup merge of #54391 - davidtwco:issue-54230, r=petrochenkov
pietroalbini Oct 2, 2018
014878e
Rollup merge of #54603 - davidtwco:issue-54559, r=nikomatsakis
pietroalbini Oct 2, 2018
779bebc
Rollup merge of #54648 - alexcrichton:update-cargo, r=nikomatsakis
pietroalbini Oct 2, 2018
a1ee000
Rollup merge of #54680 - RalfJung:compile-pass, r=pnkfelix
pietroalbini Oct 2, 2018
7bec3e8
Rollup merge of #54687 - scottmcm:more-elision, r=dtolnay
pietroalbini Oct 2, 2018
156dfdb
Rollup merge of #54699 - DiamondLovesYou:reexport-getopts, r=pnkfelix
pietroalbini Oct 2, 2018
abb8140
Rollup merge of #54702 - RalfJung:fn-ptr-promotion, r=oli-obk
pietroalbini Oct 2, 2018
57db500
Rollup merge of #54728 - alexcrichton:renumber-issues, r=nikomatsakis
pietroalbini Oct 2, 2018
926431b
Rollup merge of #54745 - abonander:cstr-const, r=oli-obk
pietroalbini Oct 2, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Activate the feature in the libcore tests too
  • Loading branch information
scottmcm committed Sep 30, 2018
commit d4840da77993d052bae2a900163026602ac89d3c
1 change: 1 addition & 0 deletions src/libcore/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#![feature(flt2dec)]
#![feature(fmt_internals)]
#![feature(hashmap_internals)]
#![feature(impl_header_lifetime_elision)]
#![feature(pattern)]
#![feature(range_is_empty)]
#![feature(raw)]
Expand Down