about summary refs log tree commit diff
path: root/src/test/run-fail/issue-23354.rs
AgeCommit message (Collapse)AuthorLines
2020-05-06Move tests from `test/run-fail` to UIYuki Okushi-6/+0
2018-12-25Remove licensesMark Rousskov-10/+0
2015-03-14Always evaluate the expression in [expr; n]Björn Steinbrink-0/+16
In case that there is a destination for the array, like in "let x = [expr; n]", we currently don't evaluate the given expression if n is zero. That's inconsistent with all other cases, including "[expr; 0]" without a destination. Fixes #23354