about summary refs log tree commit diff
path: root/src/test/run-pass/unchecked-predicates.rs
AgeCommit message (Collapse)AuthorLines
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-39/+0
2012-07-05Comments only: change TODOs to FIXMEs and annotate themTim Chevalier-2/+0
2012-06-20Remove bind. Issue #2189Brian Anderson-1/+1
2012-05-21change list so that it must be used in a purely boxed fashionNiko Matsakis-7/+7
The old way was inconsistent---the head was unboxed but the tail was boxed. This resulted in numerous needless copies and also made the borrow check unhappy, because the head tended to be stored in mutable memory.
2012-02-11make bind syntax unnecessary: just use _ for one of the argumentsNiko Matsakis-1/+1
2012-01-23s/block()/fn()/gNiko Matsakis-1/+1
2012-01-19test: "tag" -> "enum" in run-pass and run-failPatrick Walton-1/+1
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-1/+1
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-4/+4
And remove support for the old syntax
2011-12-29list: use predicate to enforce non-empty requirementLenny222-2/+10
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-4/+4
This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177
2011-11-02Rename car/cdr to head/tail in std::listMarijn Haverbeke-1/+1
Closes #1086
2011-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-4/+4
Closes #1067
2011-10-20Make fn denote a bare function. Convert fn to fn@ as neededBrian Anderson-1/+1
2011-10-07Add pass-by-ref annotation to the tests to make them typecheckMarijn Haverbeke-1/+1
Issue #1008
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-5/+5
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-09-02Reformat. Issue #855Brian Anderson-17/+10
2011-08-31Replace xfail-stageN with simply xfail-testMarijn Haverbeke-1/+0
Closes #799
2011-08-25Test case for unchecked blocksTim Chevalier-0/+41