about summary refs log tree commit diff
path: root/src/test/compile-fail/wrong-mul-method-signature.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-79/+0
2015-04-14Fallout from this change.Felix S. Klock II-10/+3
2015-01-12Fix testsuite errorsmdinger-4/+12
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-3/+11
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-13Fix compile-fail testsJorge Aparicio-8/+8
2014-10-21The new method lookup mechanism typechecks calls against the method type ↵Niko Matsakis-3/+9
declared in the trait, not in the impl. In some cases that results in tighter rules, and in some cases looser. Correct for that.
2014-08-24Adjust the error messages to match the pattern "expected foo, found bar"Jonas Hietala-3/+3
Closes #8492
2014-04-05librustc: Improve error message for incompatible trait method signatures.Kevin Butler-1/+32
2014-03-01librustc: Don't ICE when operator traits are not implemented properly. Fixes ↵Luqman Aden-0/+33
#11450