Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
261efb6
suppress the default allow(unused) under --display-warnings
QuietMisdreavus Mar 15, 2018
683ad94
Add OnDrop
Zoxc Mar 15, 2018
3b43dcb
Replace Rc with Lrc
Zoxc Mar 14, 2018
910bf84
Always print `aborting due to n previous error(s)` and only print it …
Zoxc Mar 15, 2018
b1d872b
Update tests
Zoxc Mar 15, 2018
9e62681
Remove core::fmt::num::Decimal
glandium Mar 17, 2018
e85c922
rustc_driver: get rid of extra thread on Unix
ishitatsuyuki Feb 27, 2018
1bb89f1
rustc_driver: get rid of extra thread on Windows
ishitatsuyuki Mar 6, 2018
a185b56
Address review comments
ishitatsuyuki Mar 18, 2018
c5c650d
Split out termination_trait_test feature gate
tmandry Mar 19, 2018
685c3c1
Reduce the diagnostic span when multiple fields are missing in pattern
estebank Mar 19, 2018
97b3bf9
Stabilize termination_trait
tmandry Mar 19, 2018
e5a55e7
Stabilize termination_trait in 1.25, not 1.26
tmandry Mar 19, 2018
8236e43
Document only-X test header
sanxiyn Mar 19, 2018
f332a9c
Single diagnostic for all non-mentioned fields in a pattern
estebank Mar 19, 2018
062a46f
Reduce diagnostic verbosity by removing labels
estebank Mar 19, 2018
be29e52
Match against friendly error message
tmandry Mar 20, 2018
5ccf3ff
diagnostics: Remove main return type errors from E0580
tmandry Mar 20, 2018
8c8a72f
Reinit the stack guard on unexpected failure
ishitatsuyuki Mar 20, 2018
2928c7a
Refactor the stack addr aligning code into a function
ishitatsuyuki Mar 20, 2018
df76629
Remove outdated comment
oli-obk Mar 20, 2018
3c8d555
rename epoch to edition
klnusbaum Mar 15, 2018
11f1406
change all appropriate EPOCH to EDITION
klnusbaum Mar 15, 2018
72334fe
typeck: Report main return type errors on return type span
tmandry Mar 20, 2018
1937661
Revert "Stabilize termination_trait in 1.25, not 1.26"
tmandry Mar 21, 2018
94bdeb6
termination_trait: Add () example to error message
tmandry Mar 21, 2018
2cdc7af
Use NOTE instead of error-pattern directive
tmandry Mar 21, 2018
b6934c9
termination_trait: Put examples in error help, not label
tmandry Mar 21, 2018
178652a
Add support to rustbuild for a 'rustc docs' component tarball
davidtwco Mar 20, 2018
1392179
Configure the dist-x86_64-linux builder to produce compiler documenta…
davidtwco Mar 20, 2018
2b13d95
termination_trait: Make error message more helpful
tmandry Mar 22, 2018
b48a26c
Produce nice array lengths on a best effort basis
oli-obk Mar 22, 2018
25c5b03
Better diagnostics for '..' pattern fragment not in the last position
ordovicia Mar 22, 2018
de1c929
Use GNU version of fgrep/egrep tool if available
semarie Mar 22, 2018
347b9d6
Fix error annotations in test
ordovicia Mar 22, 2018
1b0e9f5
Only generate documentation for local rustc crates.
davidtwco Mar 22, 2018
73fa6d5
Remove std/test documentation from compiler docs.
davidtwco Mar 22, 2018
f78405d
Rollup merge of #48575 - ishitatsuyuki:unix-no-thread, r=alexcrichton
frewsxcv Mar 23, 2018
8b41a59
Rollup merge of #49035 - klnusbaum:49001_epoch, r=Manishearth
frewsxcv Mar 23, 2018
0616e86
Rollup merge of #49046 - Zoxc:error-summary, r=michaelwoerister
frewsxcv Mar 23, 2018
db65b0c
Rollup merge of #49064 - QuietMisdreavus:piercing-the-veil, r=Guillau…
frewsxcv Mar 23, 2018
a662d20
Rollup merge of #49102 - glandium:decimal, r=aturon
frewsxcv Mar 23, 2018
c783019
Rollup merge of #49160 - estebank:issue-47457-missing-fields, r=oli-obk
frewsxcv Mar 23, 2018
dcf27e9
Rollup merge of #49162 - tmandry:stabilize-termination-trait, r=nikom…
frewsxcv Mar 23, 2018
6f29269
Rollup merge of #49169 - sanxiyn:doc-only, r=aturon
frewsxcv Mar 23, 2018
1247bef
Rollup merge of #49193 - davidtwco:issue-29893, r=alexcrichton
frewsxcv Mar 23, 2018
759ebda
Rollup merge of #49262 - oli-obk:fixed_size_array_len, r=estebank
frewsxcv Mar 23, 2018
9e0d0ff
Rollup merge of #49268 - ordovicia:dotdot-pattern-diag, r=petrochenkov
frewsxcv Mar 23, 2018
cb1ffc7
Rollup merge of #49272 - semarie:cat-and-grep-gnu, r=alexcrichton
frewsxcv Mar 23, 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
Stabilize termination_trait in 1.25, not 1.26
  • Loading branch information
tmandry committed Mar 19, 2018
commit e5a55e74405dedf8bc0744300a8c506eea94bc18
4 changes: 2 additions & 2 deletions src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -551,12 +551,12 @@ declare_features! (
(accepted, match_beginning_vert, "1.25.0", Some(44101), None),
// Nested groups in `use` (RFC 2128)
(accepted, use_nested_groups, "1.25.0", Some(44494), None),
// Termination trait in main (RFC 1937)
(accepted, termination_trait, "1.25.0", Some(43301), None),
// a..=b and ..=b
(accepted, inclusive_range_syntax, "1.26.0", Some(28237), None),
// allow `..=` in patterns (RFC 1192)
(accepted, dotdoteq_in_patterns, "1.26.0", Some(28237), None),
// Termination trait in main (RFC 1937)
(accepted, termination_trait, "1.26.0", Some(43301), None),
);

// If you change this, please modify src/doc/unstable-book as well. You must
Expand Down