summary refs log tree commit diff
path: root/src/test/run-pass/explicit-self.rs
AgeCommit message (Collapse)AuthorLines
2014-07-16librustc: Allow the new UFCS explicit self in trait definitions, andPatrick Walton-1/+1
remove `~self` from the test suite.
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-02-07Removed @self and @Trait.Eduard Burtescu-14/+6
2013-10-23register snapshotsDaniel Micay-0/+1
2013-10-01remove the `float` typeDaniel Micay-7/+7
It is simply defined as `f64` across every platform right now. A use case hasn't been presented for a `float` type defined as the highest precision floating point type implemented in hardware on the platform. Performance-wise, using the smallest precision correct for the use case greatly saves on cache space and allows for fitting more numbers into SSE/AVX registers. If there was a use case, this could be implemented as simply a type alias or a struct thanks to `#[cfg(...)]`. Closes #6592 The mailing list thread, for reference: https://mail.mozilla.org/pipermail/rust-dev/2013-July/004632.html
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-3/+6
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-1/+1
2013-06-01Remove all uses of `pub impl`. rs=stylePatrick Walton-9/+9
2013-05-19Use assert_eq! rather than assert! where possibleCorey Richardson-5/+5
2013-04-10tests: changes in response to #5656Niko Matsakis-1/+1
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-5/+5
2013-03-26librustc: Modify all code to use new lifetime binder syntaxPatrick Walton-3/+3
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-1/+1
2013-03-18librustc: Convert all uses of old lifetime notation to new lifetime ↵Patrick Walton-3/+3
notation. rs=delifetiming
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-5/+5
2013-02-28librustc: Mark all type implementations public. rs=impl-publicityPatrick Walton-2/+2
2013-02-22test: De-mut the test suite. rs=demutingPatrick Walton-4/+4
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
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-11/+13
Except the pipes tests (that needs a snapshot)
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-12-05test: Fix a bunch of test cases. rs=burningPatrick Walton-1/+1
2012-09-07Convert field terminators to commas. Stop parsing semis.Brian Anderson-1/+1
2012-09-06Remove struct ctorsBrian Anderson-1/+5
2012-08-21more sound treatment of fn& regions; change all & to be distinctNiko Matsakis-2/+2
2012-08-17Make by-val explicit self actually work. Closes #2585.Michael Sullivan-0/+64