| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-08-14 | Moved compile-fail tests to ui tests. | David Wood | -75/+0 | |
| 2017-04-11 | fix a bug in compiletest JSON parsing for duplicate errors | Niko Matsakis | -2/+0 | |
| In some cases, we give multiple primary spans, in which case we would report one `//~` annotation per primary span. That was very confusing because these things are reported to the user as a single error. UI tests would be better here. | ||||
| 2016-05-02 | update test cases to reflect new messages | Niko Matsakis | -0/+2 | |
| 2015-01-08 | Update the "English-language" to-string function of a `cmt` to use | Niko Matsakis | -2/+2 | |
| more modern terminology and update tests accordingly. | ||||
| 2015-01-05 | Remove uses of default_type_params feature gate from tests. | Huon Wilson | -2/+0 | |
| 2015-01-05 | Remove use of associated_types feature gate from tests. | Huon Wilson | -1/+1 | |
| 2015-01-03 | use assoc types in binop traits | Jorge Aparicio | -6/+12 | |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -0/+2 | |
| This commit is an implementation of [RFC 503][rfc] which is a stabilization story for the prelude. Most of the RFC was directly applied, removing reexports. Some reexports are kept around, however: * `range` remains until range syntax has landed to reduce churn. * `Path` and `GenericPath` remain until path reform lands. This is done to prevent many imports of `GenericPath` which will soon be removed. * All `io` traits remain until I/O reform lands so imports can be rewritten all at once to `std::io::prelude::*`. This is a breaking change because many prelude reexports have been removed, and the RFC can be consulted for the exact list of removed reexports, as well as to find the locations of where to import them. [rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0503-prelude-stabilization.md [breaking-change] Closes #20068 | ||||
| 2014-12-13 | Test binops move semantics | Jorge Aparicio | -0/+69 | |
