summaryrefslogtreecommitdiff
path: root/test/files/run/t1220.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t1220.scala')
-rw-r--r--test/files/run/t1220.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t1220.scala b/test/files/run/t1220.scala
index 75e0ea07e8..0ba188d02d 100644
--- a/test/files/run/t1220.scala
+++ b/test/files/run/t1220.scala
@@ -1,7 +1,7 @@
object Test extends App {
class QSRichIterable[A](self: Iterable[A]) {
- def filterMap[R](f: PartialFunction[A,R]) =
+ def filterMap[R](f: PartialFunction[A,R]) =
self filter (f.isDefinedAt) map f
}