summaryrefslogtreecommitdiff
path: root/test/files/jvm/interpreter.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-02-05 00:46:58 +0100
committerHubert Plociniczak <hubert.plociniczak@gmail.com>2013-02-08 17:51:43 +0100
commite0068b908517768e900a3945e483e9c379d728d8 (patch)
tree680ac5fb751dc183c70a2db6f73670a041dd1c95 /test/files/jvm/interpreter.check
parent8d25d05e9bf848d763e7b657d9c7e96ea5cb8daf (diff)
downloadscala-e0068b908517768e900a3945e483e9c379d728d8.tar.gz
scala-e0068b908517768e900a3945e483e9c379d728d8.tar.bz2
scala-e0068b908517768e900a3945e483e9c379d728d8.zip
SI-5675 Discard duplicate feature warnings at a position
When -feature has not been enabled, we were double counting identical feature warnings that were emitted at the same position. Normal error reporting only reports the first time a warning appears at a position; feature warning counter incrementing should behave the same way. @hubertp: Fixed .check files that were broken in the original commit.
Diffstat (limited to 'test/files/jvm/interpreter.check')
-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 6145b6c4d2..96b57c7742 100644
--- a/test/files/jvm/interpreter.check
+++ b/test/files/jvm/interpreter.check
@@ -97,7 +97,7 @@ scala> case class Bar(n: Int)
defined class Bar
scala> implicit def foo2bar(foo: Foo) = Bar(foo.n)
-warning: there were 1 feature warnings; re-run with -feature for details
+warning: there were 1 feature warning(s); re-run with -feature for details
foo2bar: (foo: Foo)Bar
scala> val bar: Bar = Foo(3)
@@ -271,7 +271,7 @@ scala> xs map (x => x)
res6: Array[_] = Array(1, 2)
scala> xs map (x => (x, x))
-warning: there were 1 feature warnings; re-run with -feature for details
+warning: there were 1 feature warning(s); re-run with -feature for details
res7: Array[(_$1, _$1)] forSome { type _$1 } = Array((1,1), (2,2))
scala>