summary refs log tree commit diff
path: root/src/test/run-pass/huge-largest-array.rs
AgeCommit message (Collapse)AuthorLines
2015-01-17Register new snapshots.Eduard Burtescu-2/+2
2015-01-08Rename `target_word_size` to `target_pointer_width`Nick Cameron-2/+2
Closes #20421 [breaking-change]
2014-12-20Allow use of `[_ ; n]` syntax for fixed length and repeating arrays.Nick Cameron-2/+2
This does NOT break any existing programs because the `[_, ..n]` syntax is also supported.
2014-11-19clearly define `int` and `uint` to fix unsoundnessDaniel Micay-0/+21
This fixes the gap in the language definition causing #18726 by defining a clear bound on the maximum size for libraries to enforce. Closes #18069