summaryrefslogtreecommitdiff
path: root/test/files/run/xMigration.check
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@typesafe.com>2015-08-24 11:36:36 +0200
committerLukas Rytz <lukas.rytz@typesafe.com>2015-08-24 11:36:36 +0200
commit3a543d64158e85b65f8998460c832362bdddec4f (patch)
tree665fc16d4932a6d8625fe28ae87c100bb1ee96c1 /test/files/run/xMigration.check
parentcd77e23b76af8538ed7e2c5c90e7845582dff460 (diff)
parentded2d4f2e613aad6670b3e5dccbab0feb711b18b (diff)
downloadscala-3a543d64158e85b65f8998460c832362bdddec4f.tar.gz
scala-3a543d64158e85b65f8998460c832362bdddec4f.tar.bz2
scala-3a543d64158e85b65f8998460c832362bdddec4f.zip
Merge pull request #4700 from SethTisue/merge-2.11.x-aug-20
Merge 2.11.x aug 20 [ci: last-only]
Diffstat (limited to 'test/files/run/xMigration.check')
-rw-r--r--test/files/run/xMigration.check6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/files/run/xMigration.check b/test/files/run/xMigration.check
index 79ce544493..cd860bf394 100644
--- a/test/files/run/xMigration.check
+++ b/test/files/run/xMigration.check
@@ -10,7 +10,7 @@ res1: Iterable[String] = MapLike(eis)
scala> :setting -Xmigration:any
scala> Map(1 -> "eis").values // warn
-<console>:11: warning: method values in trait MapLike has changed semantics in version 2.8.0:
+<console>:12: warning: method values in trait MapLike has changed semantics in version 2.8.0:
`values` returns `Iterable[B]` rather than `Iterator[B]`.
Map(1 -> "eis").values // warn
^
@@ -24,7 +24,7 @@ res3: Iterable[String] = MapLike(eis)
scala> :setting -Xmigration:2.7
scala> Map(1 -> "eis").values // warn
-<console>:11: warning: method values in trait MapLike has changed semantics in version 2.8.0:
+<console>:12: warning: method values in trait MapLike has changed semantics in version 2.8.0:
`values` returns `Iterable[B]` rather than `Iterator[B]`.
Map(1 -> "eis").values // warn
^
@@ -38,7 +38,7 @@ res5: Iterable[String] = MapLike(eis)
scala> :setting -Xmigration // same as :any
scala> Map(1 -> "eis").values // warn
-<console>:11: warning: method values in trait MapLike has changed semantics in version 2.8.0:
+<console>:12: warning: method values in trait MapLike has changed semantics in version 2.8.0:
`values` returns `Iterable[B]` rather than `Iterator[B]`.
Map(1 -> "eis").values // warn
^