about summary refs log tree commit diff
path: root/src/test/run-pass/issue-333.rs
AgeCommit message (Collapse)AuthorLines
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-2/+2
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-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-2/+2
Closes #1067
2011-10-20Make fn denote a bare function. Convert fn to fn@ as neededBrian Anderson-1/+1
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-2/+2
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-08-23Add kind-checking for assign-op, copy, ret, be, fail exprs. Fix caught ↵Graydon Hoare-2/+2
kinding-violations in rustc and libstd.
2011-08-16Port the tests to the expr foo::<T> syntax.Erick Tryzelaar-1/+1
2011-08-16Port the tests to the decl foo<T> syntax.Erick Tryzelaar-3/+3
2011-07-27Reformat for new syntaxMarijn Haverbeke-10/+3
2011-07-08Add test case for issue #333. Closes #333Brian Anderson-0/+12
This has been fixed by a mystery hacker.