rust/src/test
Niko Matsakis 29003c799f Rename the poorly named Managed<T> type to Mut<T>.
The Mut<T> type is intended to allow freezable data stuctures to be stored in
`@mut` boxes. Currently this causes borrowck to be very conserivative since it
cannot prove that you are not modifying such a structure while iterating over
it, for example.  But if you do `@Mut<T>` instead of `@mut T`, you will
effectively convert borrowck's static checks into dynamic ones.  This lets
you use the e.g. send_map just like a Java Map or something else.
2012-09-10 16:50:07 -07:00
..
auxiliary Convert class methods to impl methods. Stop parsing class methods 2012-09-10 16:13:08 -07:00
bench Rename the poorly named Managed<T> type to Mut<T>. 2012-09-10 16:50:07 -07:00
compile-fail Convert class methods to impl methods. Stop parsing class methods 2012-09-10 16:13:08 -07:00
pretty
run-fail Convert all kind bounds to camel case. Remove send, owned keywords. 2012-09-07 18:10:11 -07:00
run-pass Convert class methods to impl methods. Stop parsing class methods 2012-09-10 16:13:08 -07:00
run-pass-fulldeps test: "import" -> "use" 2012-09-05 12:32:05 -07:00