summary refs log tree commit diff
path: root/src/test/compile-fail/deriving-no-inner-impl-error-message.rs
AgeCommit message (Collapse)AuthorLines
2015-01-02Use `derive` rather than `deriving` in testsNick Cameron-2/+2
2014-11-05Fix testsJorge Aparicio-2/+2
2014-11-03Fix error message in compile-fail testJorge Aparicio-1/+2
2014-05-30std: Rename {Eq,Ord} to Partial{Eq,Ord}Alex Crichton-1/+1
This is part of the ongoing renaming of the equality traits. See #12517 for more details. All code using Eq/Ord will temporarily need to move to Partial{Eq,Ord} or the Total{Eq,Ord} traits. The Total traits will soon be renamed to {Eq,Ord}. cc #12517 [breaking-change]
2014-01-28syntax: make deriving have slightly less cryptic error messages.Huon Wilson-0/+24
This unfortunately changes an error like error: mismatched types: expected `&&NotClone` but found `&NotClone` into error: type `NotClone` does not implement any method in scope named `clone`