summaryrefslogtreecommitdiff
path: root/test/files/pos/t2444.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t2444.scala')
-rw-r--r--test/files/pos/t2444.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/pos/t2444.scala b/test/files/pos/t2444.scala
index a052270196..fac1e95d0f 100644
--- a/test/files/pos/t2444.scala
+++ b/test/files/pos/t2444.scala
@@ -2,14 +2,14 @@ object Test {
trait Foo
- class Bar {
+ class Bar {
object baz extends Foo
}
- def frob[P1, P2<:Foo](f:P1 => P2) = ()
+ def frob[P1, P2<:Foo](f:P1 => P2) = ()
def main(args:Array[String]) : Unit = {
- frob((p:Bar) => p.baz)
+ frob((p:Bar) => p.baz)
}
}