about summary refs log tree commit diff
path: root/src/test/compile-fail/box-static-bound.rs
AgeCommit message (Collapse)AuthorLines
2014-10-02tests: remove uses of Gc.Eduard Burtescu-22/+0
2014-08-27Implement generalized object and type parameter bounds (Fixes #16462)Niko Matsakis-1/+1
2014-07-26Remove managed_box gate from testsBrian Anderson-1/+0
No longer does anything.
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-4/+6
This removes all remnants of `@` pointers from rustc. Additionally, this removes the `GC` structure from the prelude as it seems odd exporting an experimental type in the prelude by default. Closes #14193 [breaking-change]
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2014-03-12Update users for the std::rand -> librand move.Huon Wilson-1/+0
2014-02-07Added tests to make tidyDerek Guenther-0/+10
2014-01-07'borrowed pointer' -> 'reference'Brian Anderson-1/+1
2013-10-23register snapshotsDaniel Micay-0/+2
2013-07-18librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes.Patrick Walton-0/+10
This makes custom borrowing implementations for custom smart pointers sound.