summaryrefslogtreecommitdiff
path: root/test/files/neg/t5617.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2012-06-17 11:47:11 +0200
committerJason Zaugg <jzaugg@gmail.com>2012-06-17 11:55:12 +0200
commit2d3b6bd321724c565fd458a2bbffb4ad211c54ff (patch)
treed512a70ac2148ebec4b9528852357f6dacebd8ab /test/files/neg/t5617.check
parent277dc7cf43566f8294bde4143107d9bfaa59e8e3 (diff)
downloadscala-2d3b6bd321724c565fd458a2bbffb4ad211c54ff.tar.gz
scala-2d3b6bd321724c565fd458a2bbffb4ad211c54ff.tar.bz2
scala-2d3b6bd321724c565fd458a2bbffb4ad211c54ff.zip
SI-5617 Better error message for "x overrides nothing".
"It looks like you're trying to override a method", notes Clippy.
Diffstat (limited to 'test/files/neg/t5617.check')
-rw-r--r--test/files/neg/t5617.check8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/neg/t5617.check b/test/files/neg/t5617.check
new file mode 100644
index 0000000000..79cc3a1e32
--- /dev/null
+++ b/test/files/neg/t5617.check
@@ -0,0 +1,8 @@
+t5617.scala:12: error: method foo overrides nothing.
+Note: the super classes of trait C contain the following, non final members named foo:
+def foo(u: Unit): Int
+def foo(x: Boolean): Int
+def foo(i: Int)(b: String): Int
+ override def foo(s: String): Int
+ ^
+one error found