summaryrefslogtreecommitdiff
path: root/test/files/pos/t7200b.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t7200b.scala')
-rw-r--r--test/files/pos/t7200b.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t7200b.scala b/test/files/pos/t7200b.scala
index 9d579c6ef9..59be898fd0 100644
--- a/test/files/pos/t7200b.scala
+++ b/test/files/pos/t7200b.scala
@@ -10,7 +10,7 @@ trait Foo {
object O extends Foo {
def coflatMap[A <: T](f: A) = {
val f2 = coflatMap(f) // inferred in 2.9.2 / 2.10.0 as [Nothing]
- f2.t // so this does't type check.
+ f2.t // so this fails to type check.
f2
}
}