about summary refs log tree commit diff
path: root/src/test/run-pass/zip-same-length.rs
AgeCommit message (Collapse)AuthorLines
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-4/+4
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-4/+4
2013-03-05core: convert vec::{last,last_opt} to return referencesErick Tryzelaar-1/+1
2013-03-05core: convert vec::{head,head_opt} to return referencesErick Tryzelaar-4/+3
2013-03-02librustc: Forbid chained imports and fix the logic for one-level renaming ↵Patrick Walton-1/+1
imports
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2013-01-24remove remaining is_not_empty functions/methodsDaniel Micay-1/+1
2012-12-13librustc: Make `use` statements crate-relative by default. r=brsonPatrick Walton-1/+0
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-2/+2
2012-09-11Convert 'use' to 'extern mod'. Remove old 'use' syntaxBrian Anderson-1/+1
2012-09-05test: "import" -> "use"Patrick Walton-3/+1
2012-08-01Convert ret to returnBrian Anderson-2/+2
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-5/+0
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-4/+4
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-4/+4
2012-06-25test: Make zip-same-length no longer rely on resolve not handling shadowed ↵Patrick Walton-2/+1
modules properly
2012-06-21Move vector addition out of trans and into libcore.Eric Holk-2/+2
2012-03-10core Remove vec::enum_chars/uint. Closes #1955Brian Anderson-0/+16
2012-03-08Rename last to last_opt, last_unsafe to lastTim Chevalier-1/+1
As per discussion on IRC. I am about to file an RFC for further discussion about the more general issue of whether to enforce invariants through types, typestate, or dynamic checks, but for now, removing the misleading name "last_unsafe".
2012-03-08Rename last_total to last_unsafeTim Chevalier-1/+1
See Issue 1943 for any discussion (reopen it if necessary). Closes #1943
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-3/+3
2011-09-02Reformat. Issue #855Brian Anderson-5/+5
2011-08-30Un-xfail zip-same-lengthTim Chevalier-5/+3
There was a type error that was getting reported poorly. Fixed it. (Now to figure out why the error was reported so poorly...)
2011-08-30XFAIL zip-same-length -- that's ok, since it's a new testTim Chevalier-3/+5
2011-08-30Library test cases for vec::zipTim Chevalier-0/+23