summaryrefslogtreecommitdiff
path: root/test/files/jvm
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2016-08-11 11:33:44 -0700
committerGitHub <noreply@github.com>2016-08-11 11:33:44 -0700
commit43d22678c251c183ca47e1bf99b41a55d74914b4 (patch)
treed1f62184b82d30db113913e3e68c701dc19359ff /test/files/jvm
parent04d4b634d816e19d8430175eb33d02d97261dd10 (diff)
parent7548d2265361ec605b67aaae50ef6504937da68c (diff)
downloadscala-43d22678c251c183ca47e1bf99b41a55d74914b4.tar.gz
scala-43d22678c251c183ca47e1bf99b41a55d74914b4.tar.bz2
scala-43d22678c251c183ca47e1bf99b41a55d74914b4.zip
Merge pull request #5272 from som-snytt/issue/8829
SI-8829 Defaultly scala -feature -deprecation
Diffstat (limited to 'test/files/jvm')
-rw-r--r--test/files/jvm/interpreter.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/interpreter.check b/test/files/jvm/interpreter.check
index 9a2162a906..72d8d39fd0 100644
--- a/test/files/jvm/interpreter.check
+++ b/test/files/jvm/interpreter.check
@@ -93,7 +93,7 @@ scala> case class Bar(n: Int)
defined class Bar
scala> implicit def foo2bar(foo: Foo) = Bar(foo.n)
-warning: there was one feature warning; re-run with -feature for details
+warning: there was one feature warning; for details, enable `:setting -feature' or `:replay -feature'
foo2bar: (foo: Foo)Bar
scala> val bar: Bar = Foo(3)
@@ -267,7 +267,7 @@ scala> xs map (x => x)
res6: Array[_] = Array(1, 2)
scala> xs map (x => (x, x))
-warning: there was one feature warning; re-run with -feature for details
+warning: there was one feature warning; for details, enable `:setting -feature' or `:replay -feature'
res7: Array[(_$1, _$1)] forSome { type _$1 } = Array((1,1), (2,2))
scala>