summary refs log tree commit diff
path: root/src/test/compile-fail/huge-array-simple.rs
AgeCommit message (Collapse)AuthorLines
2015-01-08Update compile fail tests to use usize.Huon Wilson-1/+1
2014-12-20Allow use of `[_ ; n]` syntax for fixed length and repeating arrays.Nick Cameron-1/+1
This does NOT break any existing programs because the `[_, ..n]` syntax is also supported.
2014-11-01Add lint for checking exceeding bitshifts #17713Falco Hirschenberger-1/+1
2014-10-17Make the tests green as they should on 32-bit architecturesAriel Ben-Yehuda-1/+1
On 32-bit architectures, the size calculations on two of the tests wrap-around in typeck, which gives the relevant arrays a size of 0, which is (correctly) successfully allocated.
2014-10-15response for review commentsAriel Ben-Yehuda-0/+15