rust/src
bors 02a24dbdd8 Auto merge of #45069 - sinkuu:tuple_arg, r=nikomatsakis
Better error for missing tuple pattern in args

#44150

Before:
```
error[E0593]: closure takes 2 arguments but 1 argument is required
 --> test.rs:5:40
  |
5 |     let it = v.into_iter().enumerate().map(|i, x| i);
  |                                        ^^^ -------- takes 2 arguments
  |                                        |
  |                                        expected closure that takes 1 argument
```

After:
```
error[E0593]: closure takes 2 arguments but a 2-tuple is required
 --> test.rs:5:40
  |
5 |     let it = v.into_iter().enumerate().map(|i, x| i);
  |                                        ^^^ ------ takes 2 arguments
  |                                        |
  |                                        expected closure that takes a 2-tuple
```
2017-10-13 20:14:38 +00:00
..
bootstrap Auto merge of #45261 - kennytm:rollup, r=kennytm 2017-10-13 17:42:25 +00:00
build_helper
ci ci: Fix installing the Android SDK 2017-10-10 18:59:40 -07:00
doc formatting fixes 2017-10-10 23:21:20 -04:00
etc Rollup merge of #45071 - tromey:use-gdb-lazy-string, r=michaelwoerister 2017-10-10 20:22:24 -04:00
grammar Update grammar to parse current rust syntax 2017-10-08 18:46:42 -07:00
jemalloc@1f5a28755e
liballoc Rollup merge of #45133 - GuillaumeGomez:usize-index-msg, r=dtolnay 2017-10-13 23:37:55 +08:00
liballoc_jemalloc
liballoc_system
libarena
libbacktrace
libcollections
libcompiler_builtins@0b9844764e
libcore Clarify how needs_drop is conservative 2017-10-13 02:29:10 -04:00
libfmt_macros
libgetopts
libgraphviz
liblibc@44e4018e1a
libpanic_abort
libpanic_unwind
libproc_macro Make the result of Literal::string() more readable 2017-10-08 21:44:13 +13:00
libprofiler_builtins
librand
librustc Auto merge of #45069 - sinkuu:tuple_arg, r=nikomatsakis 2017-10-13 20:14:38 +00:00
librustc_allocator
librustc_apfloat
librustc_asan
librustc_back rustc: Allow target-specific default cgus 2017-10-09 13:45:30 -07:00
librustc_borrowck Point at immutable outer variable 2017-10-11 15:56:22 -07:00
librustc_const_eval implement pattern-binding-modes RFC 2017-10-06 16:30:23 -04:00
librustc_const_math
librustc_cratesio_shim
librustc_data_structures Rollup merge of #45110 - Nashenas88:master, r=arielb1 2017-10-13 23:37:53 +08:00
librustc_driver Auto merge of #44822 - frewsxcv:frewsxcv-eprintln, r=Kimundi 2017-10-10 02:54:14 +00:00
librustc_errors
librustc_incremental Auto merge of #45063 - michaelwoerister:bring-back-incremental-info, r=nikomatsakis 2017-10-13 15:04:12 +00:00
librustc_lint
librustc_llvm Auto merge of #45041 - est31:master, r=alexcrichton 2017-10-09 04:59:02 +00:00
librustc_lsan
librustc_metadata
librustc_mir Auto merge of #45025 - pnkfelix:mir-borrowck-moves-of-supporting-prefixes-invalidate-uses-too, r=arielb1 2017-10-13 04:00:55 +00:00
librustc_msan
librustc_passes
librustc_platform_intrinsics
librustc_plugin
librustc_privacy
librustc_resolve Add suggestions for misspelled labels 2017-10-10 17:22:14 +02:00
librustc_save_analysis
librustc_trans Auto merge of #45063 - michaelwoerister:bring-back-incremental-info, r=nikomatsakis 2017-10-13 15:04:12 +00:00
librustc_trans_utils
librustc_tsan
librustc_typeck update comments referring to old check_method_self_type 2017-10-07 23:56:13 -04:00
librustdoc Rollup merge of #45245 - stjepang:more-padding-between-impls, r=QuietMisdreavus 2017-10-13 23:38:04 +08:00
libserialize
libstd Rollup merge of #44855 - federicomenaquintero:master, r=steveklabnik 2017-10-13 23:37:51 +08:00
libstd_unicode
libsyntax Rollup merge of #45178 - Badel2:comma-after-struct, r=petrochenkov 2017-10-13 23:37:57 +08:00
libsyntax_ext
libsyntax_pos Rollup merge of #44775 - MaloJaffre:debug-struct, r=sfackler 2017-10-10 22:43:57 +08:00
libterm
libtest Remove nacl from libtest 2017-10-05 05:04:40 +02:00
libunwind
llvm@83b72cedfd rustc: Update LLVM with a ThinLTO fix 2017-10-11 09:10:59 -07:00
rt
rtstartup
rustc Trim and document compiler-builtins shim 2017-10-06 20:35:57 -04:00
rustllvm Auto merge of #45170 - rust-lang:aphs-no-unsynchronised-llvm-err-global, r=alexcrichton 2017-10-10 14:26:13 +00:00
test Auto merge of #45069 - sinkuu:tuple_arg, r=nikomatsakis 2017-10-13 20:14:38 +00:00
tools Auto merge of #45063 - michaelwoerister:bring-back-incremental-info, r=nikomatsakis 2017-10-13 15:04:12 +00:00
Cargo.lock Rollup merge of #45049 - alexcrichton:update-jobserver, r=sfackler 2017-10-13 01:58:40 +08:00
Cargo.toml
stage0.txt