about summary refs log tree commit diff
path: root/src/test/compile-fail/staticness-mismatch.rs
AgeCommit message (Collapse)AuthorLines
2018-08-14Moved compile-fail tests to ui tests.David Wood-21/+0
2015-02-18Fallout: tests. As tests frequently elide things, lots of changesNiko Matsakis-1/+1
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2014-02-07Added tests to make tidyDerek Guenther-1/+2
2013-04-10tests: changes in response to #5656Niko Matsakis-1/+1
2013-03-22librustc: Remove all uses of `static` from functions. rs=destaticPatrick Walton-1/+1
2013-03-13librustc: Remove implicit self from the language, except for old-style drop ↵Patrick Walton-1/+1
blocks.
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-11-15Make staticness mismatch a fatal errorTim Chevalier-1/+1
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
2012-08-08Convert impls to new syntaxBrian Anderson-1/+1
2012-08-07Implement static typeclass methods. Closes #3132.Michael Sullivan-0/+10