summary refs log tree commit diff
path: root/src/test/run-pass/nullable-pointer-size.rs
AgeCommit message (Collapse)AuthorLines
2014-06-14rustc: Obsolete the `@` syntax entirelyAlex Crichton-1/+2
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-05-14test: Remove all uses of `~str` from the test suite.Patrick Walton-1/+0
2014-05-13test: Add missing `#![feature(managed_boxes)]`klutzy-1/+1
The tests use managed boxes, but are not perfectly feature-gated because they use `@` inside macros. (It causes issue after `--pretty expanded`.)
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-1/+1
for `~str`/`~[]`. Note that `~self` still remains, since I forgot to add support for `Box<self>` before the snapshot. How to update your code: * Instead of `~EXPR`, you should write `box EXPR`. * Instead of `~TYPE`, you should write `Box<Type>`. * Instead of `~PATTERN`, you should write `box PATTERN`. [breaking-change]
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2014-03-22Remove outdated and unnecessary std::vec_ng::Vec imports.Huon Wilson-1/+0
(And fix some tests.)
2014-03-21test: Make manual changes to deal with the fallout from removal ofPatrick Walton-1/+1
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
2014-03-21test: Automatically remove all `~[T]` from tests.Patrick Walton-1/+1
2014-02-02Update/delete tests using @[].Huon Wilson-1/+0
2014-02-02test: Remove `@str` from the test suitePatrick Walton-1/+0
2013-10-17std: Move size/align functions to std::mem. #2240Brian Anderson-3/+3
2013-10-06Add appropriate #[feature] directives to testsAlex Crichton-0/+2
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+2
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-2/+2
2013-04-22Add some tests for nullable-pointer enumsJed Davis-0/+44