about summary refs log tree commit diff
path: root/src/test/run-pass/unique-copy-box.rs
AgeCommit message (Collapse)AuthorLines
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-1/+1
2011-10-24move sys fns into c-stack-cdecl and get_type_desc() into rustiNiko Matsakis-1/+1
there is one test failure, stdtest/sys.rs, which inexplicably (thus far) fails to compile because it invokes sys::rustrt::last_os_error() instead of invoking sys::last_os_error(). If stdtest/sys.rs is updated to invoke the wrapper, it passes. Still tracing the source of this error.
2011-10-12all tests passNiko Matsakis-1/+1
2011-09-22Add a test for unique boxes containing shared boxesBrian Anderson-0/+12
Issue #409