diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-10 07:49:45 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-12-18 23:31:52 -0800 |
| commit | 4ffd9f49c340c350080bfe6c1be9e3aaccd549d0 (patch) | |
| tree | 23aff13e71e93fa2c73cea94bf6128f920220dfe /src/libstd/lib.rs | |
| parent | a7061d02e16d0821d3af2b753155fe44bab7725c (diff) | |
| download | rust-4ffd9f49c340c350080bfe6c1be9e3aaccd549d0.tar.gz rust-4ffd9f49c340c350080bfe6c1be9e3aaccd549d0.zip | |
Avoid .take().unwrap() with FnOnce closures
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 7219fef3732..5796f894661 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -106,7 +106,7 @@ #![allow(unknown_features)] #![feature(macro_rules, globs, linkage, thread_local, asm)] #![feature(default_type_params, phase, lang_items, unsafe_destructor)] -#![feature(import_shadowing, slicing_syntax)] +#![feature(import_shadowing, slicing_syntax, tuple_indexing)] #![feature(unboxed_closures)] // Don't link to std. We are std. |
