about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-4968.rs
AgeCommit message (Collapse)AuthorLines
2018-07-15Move some `compile-fail` tests to `ui`Esteban Küber-20/+0
2016-07-28Move to {integer} and {float}Jonathan Turner-1/+1
2016-07-28Rename _ to {numerics} for unknown numeric typesJonathan Turner-1/+1
2016-05-02update test cases to reflect new messagesNiko Matsakis-4/+3
2015-01-12Fix testsuite errorsmdinger-2/+5
2015-01-06test fallout from isize/usizeCorey Richardson-2/+2
2014-10-30Use the `_` representation for integral variables as wellJakub Bukaj-1/+1
2014-10-29Always drop var IDs from type variables modulo -Z verbose, per PR discussionJakub Bukaj-1/+1
2014-10-29Update tests with the new diagnostic tweaksJakub Bukaj-1/+1
2014-10-09test: Convert statics to constantsAlex Crichton-1/+1
Additionally, add lots of tests for new functionality around statics and `static mut`.
2014-08-24Adjust the error messages to match the pattern "expected foo, found bar"Jonas Hietala-2/+2
Closes #8492
2014-02-07Added tests to make tidyDerek Guenther-1/+3
2014-01-13rustc: make error messages containing generic more self-explanatory.Huon Wilson-1/+1
Unsuffixed literals like 1 and 1.1, and free type parameters sometimes have to be printed in error messages, which ended up with <V0>, <VI0> and <VF0>. This change puts the words "generic" and "integer"/"float" into the message so it's not a completely black box.
2013-05-03add gitattributes and fix whitespace issuesDaniel Micay-1/+0
2013-03-22librustc: Remove the `const` declaration form everywherePatrick Walton-1/+1
2013-02-19add missing typecheck for const pattern match armJeong YunWon-0/+17
Issue #4968