about summary refs log tree commit diff
path: root/src/test/run-pass/borrowck-mut-uniq.rs
AgeCommit message (Expand)AuthorLines
2016-02-24Move the borrowck run-pass/compile-fail tests into their own directoriesNiko Matsakis-43/+0
2015-03-26Mass rename uint/int to usize/isizeAlex Crichton-4/+4
2015-03-05Remove integer suffixes where the types in compiled code are identical.Eduard Burtescu-1/+1
2015-03-03Add `: Box<_>` or `::Box<_>` type annotations to various places.Felix S. Klock II-1/+1
2015-02-18Update suffixes en masse in tests using `perl -p -i -e`Niko Matsakis-1/+1
2015-01-29s/Show/Debug/gJorge Aparicio-1/+1
2015-01-29`range(a, b).foo()` -> `(a..b).foo()`Jorge Aparicio-1/+1
2015-01-08fallout: run-pass tests that use box. (many could be ported to `Box::new` in...Felix S. Klock II-0/+3
2015-01-06core: split into fmt::Show and fmt::StringSean McArthur-2/+2
2015-01-05fix rpass testsJorge Aparicio-1/+1
2015-01-02Use `derive` rather than `deriving` in testsNick Cameron-1/+1
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-1/+1
2014-10-16Remove libdebug and update tests.Luqman Aden-3/+2
2014-07-17librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language,Patrick Walton-1/+1
2014-07-09tests: Remove uses of advance.Luqman Aden-1/+1
2014-06-24librustc: Remove cross borrowing from mutable `Box`es to `&mut`.Patrick Walton-2/+2
2014-05-27Move std::{reflect,repr,Poly} to a libdebug crateAlex Crichton-0/+2
2014-05-06librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, exceptPatrick Walton-2/+2
2014-03-22Remove outdated and unnecessary std::vec_ng::Vec imports.Huon Wilson-1/+0
2014-03-21test: Make manual changes to deal with the fallout from removal ofPatrick Walton-1/+2
2014-03-21test: Automatically remove all `~[T]` from tests.Patrick Walton-3/+3
2014-03-15log: Introduce liblog, the old std::loggingAlex Crichton-2/+2
2014-02-11Move replace and swap to std::mem. Get rid of std::utilEdward Wang-3/+3
2013-11-26test: Remove non-procedure uses of `do` from compiletest, libstd tests,Patrick Walton-2/+2
2013-11-26test: Remove most uses of `&fn()` from the tests.Patrick Walton-1/+1
2013-10-22Drop the '2' suffix from logging macrosAlex Crichton-2/+2
2013-09-30rpass: Remove usage of fmt!Alex Crichton-2/+2
2013-08-17Fix warnings it testsErick Tryzelaar-1/+0
2013-08-03replace all remaining `for` with `foreach` or `do`Daniel Micay-2/+3
2013-08-02replace `range` with an external iteratorDaniel Micay-1/+1
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+1
2013-05-22test: Update tests to use the new syntax.Patrick Walton-1/+1
2013-05-10Stop using the '<->' operatorAlex Crichton-2/+4
2013-05-10test: Use the new `for` protocolAlex Crichton-1/+1
2013-03-11librustc: Replace all uses of `fn()` with `&fn()`. rs=defunPatrick Walton-1/+1
2013-02-01check-fast fallout from removing export, r=burningtreeGraydon Hoare-1/+1
2013-01-26testsuite: Eliminate uses of structural records from most run-pass testsTim Chevalier-4/+4
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-10-23Remove uses of binary move - <- - from tests and librariesTim Chevalier-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-2/+2
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-2/+2
2012-07-25avoid capture of bound regions when infering types for closureNiko Matsakis-0/+26