summaryrefslogtreecommitdiff
path: root/test/files/presentation/partial-fun
Commit message (Collapse)AuthorAgeFilesLines
* Remove orphaned check files and flags files.Jason Zaugg2013-10-271-1/+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-7643 Enable newPatternMatching in interactive.Jason Zaugg2013-09-063-0/+16
Without it, the enclosed test fails with: ArrayBuffer(Problem(RangePosition(partial-fun/src/PartialFun.scala, 62, 62, 77),type mismatch; found : Int => Int required: PartialFunction[Int,Int],2)) And with that, we can remove this option altogether.