about summary refs log tree commit diff
path: root/src/test/compile-fail/binop-move-semantics.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-75/+0
2017-04-11fix a bug in compiletest JSON parsing for duplicate errorsNiko 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-02update test cases to reflect new messagesNiko Matsakis-0/+2
2015-01-08Update the "English-language" to-string function of a `cmt` to useNiko Matsakis-2/+2
more modern terminology and update tests accordingly.
2015-01-05Remove uses of default_type_params feature gate from tests.Huon Wilson-2/+0
2015-01-05Remove use of associated_types feature gate from tests.Huon Wilson-1/+1
2015-01-03use assoc types in binop traitsJorge Aparicio-6/+12
2015-01-02std: Stabilize the prelude moduleAlex 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-13Test binops move semanticsJorge Aparicio-0/+69