about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-3969.rs
AgeCommit message (Collapse)AuthorLines
2013-08-27librustc: Remove `&const` and `*const` from the language.Patrick Walton-25/+0
They are still present as part of the borrow check.
2013-04-10tests: changes in response to #5656Niko Matsakis-1/+1
2013-03-22test: Fix test. rs=testPatrick Walton-1/+1
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-1/+1
2013-02-27librustc: Forbid `pub` or `priv` before trait implementationsPatrick Walton-1/+1
2013-02-15librustc: Stop parsing `impl Type : Trait` and fix several declarations that ↵Patrick Walton-1/+1
slipped through. r=tjc
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-11-15Make staticness mismatch a fatal errorTim Chevalier-0/+15
Exit with a fatal error, instead of recording a non-fatal error, when we encounter an impl method that's static when its corresponding trait method isn't (or vice versa). This is because code later on in the typechecker will expect the staticness of the two methods to be consistent and ICE otherwise. r=nmatsakis Closes #3969