about summary refs log tree commit diff
path: root/src/test/compile-fail/trait-impl-method-mismatch.rs
AgeCommit message (Collapse)AuthorLines
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-4/+0
2013-03-21libsyntax: Remove `@const` from the languagePatrick Walton-10/+0
2013-03-18librustc: Make the compiler ignore purity.Patrick Walton-3/+3
For bootstrapping purposes, this commit does not remove all uses of the keyword "pure" -- doing so would cause the compiler to no longer bootstrap due to some syntax extensions ("deriving" in particular). Instead, it makes the compiler ignore "pure". Post-snapshot, we can remove "pure" from the language. There are quite a few (~100) borrow check errors that were essentially all the result of mutable fields or partial borrows of `@mut`. Per discussions with Niko I think we want to allow partial borrows of `@mut` but detect obvious footguns. We should also improve the error message when `@mut` is erroneously reborrowed.
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-10-26Partial fix for #2687---impl method must only be subtype of trait method, ↵Niko Matsakis-0/+25
not exact match.