summary refs log tree commit diff
path: root/src/test/run-pass/while-let.rs
AgeCommit message (Collapse)AuthorLines
2017-04-20Remove BinaryHeap::{push_pop,replace}Josh Stone-2/+0
[unstable, deprecated since 1.13.0]
2015-12-10std: Remove deprecated functionality from 1.5Alex Crichton-1/+1
This is a standard "clean out libstd" commit which removes all 1.5-and-before deprecated functionality as it's now all been deprecated for at least one entire cycle.
2015-09-01Add missing stability markings to BinaryHeap.Eli Friedman-1/+1
2015-04-08Remove pretty-expanded from failing testsAlex Crichton-1/+0
This commit removes pretty-expanded from all tests that wind up calling panic! one way or another now that its internals are unstable.
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-1/+1
Now that support has been removed, all lingering use cases are renamed.
2015-03-23rustdoc: Replace no-pretty-expanded with pretty-expandedBrian Anderson-0/+2
Now that features must be declared expanded source often does not compile. This adds 'pretty-expanded' to a bunch of test cases that still work.
2015-03-23Require feature attributes, and add them where necessaryBrian Anderson-0/+2
2015-01-30Remove all `i` suffixesTobias Bucher-6/+6
2014-12-12Remove feature gate directives for `if_let`, `while_let`, and `tuple_indexing`.Chase Southwood-2/+0
2014-11-02refactor libcollections as part of collection reformAlexis Beingessner-3/+3
* Moves multi-collection files into their own directory, and splits them into seperate files * Changes exports so that each collection has its own module * Adds underscores to public modules and filenames to match standard naming conventions (that is, treemap::{TreeMap, TreeSet} => tree_map::TreeMap, tree_set::TreeSet) * Renames PriorityQueue to BinaryHeap * Renames SmallIntMap to VecMap * Miscellanious fallout fixes [breaking-change]
2014-10-10Add tests for `while let`John Gallagher-0/+56