about summary refs log tree commit diff
path: root/src/test/run-pass/resource-in-struct.rs
AgeCommit message (Collapse)AuthorLines
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-1/+1
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-28Move to short kind kinds words in test suiteMarijn Haverbeke-1/+1
Issue #1076
2011-10-25Step one towards new type param kind syntaxMarijn Haverbeke-1/+1
Issue #1067 Needs a snapshot to finalize.
2011-08-20ReformatBrian Anderson-5/+3
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-16Port the tests to the decl foo<T> syntax.Erick Tryzelaar-1/+1
2011-08-16Port the tests to the typaram foo<T> syntax.Erick Tryzelaar-1/+1
2011-07-29Fix iter_structural_ty_full for resource typesMarijn Haverbeke-0/+19
The compiler would blow up when compiling a structural type containing a resource.