summaryrefslogtreecommitdiff
path: root/test/files/neg/t7694b.check
Commit message (Collapse)AuthorAgeFilesLines
* Remove orphaned check files and flags files.Jason Zaugg2013-10-271-7/+0
| | | | (for f in $(find test -name '*.check' -o -name '*.flags'); do bare=$(echo $f | sed -E 's/\.\w+$//'); ([[ -f "$bare" ]] || [[ -d "$bare" ]] || [[ -f "$bare.scala" ]] || [[ -f "$bare.test" ]] || echo $f) done;) | xargs rm
* SI-7694 Add @uncheckedBounds to the libraryJason Zaugg2013-08-131-0/+7
Followup to the previous commit that added the compiler support for opting out of bounds checking. With both pieces, we can test that the temporaries introduced by the named/default arguments transform don't trigger bounds violations.