From 2d3b6bd321724c565fd458a2bbffb4ad211c54ff Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Sun, 17 Jun 2012 11:47:11 +0200 Subject: SI-5617 Better error message for "x overrides nothing". "It looks like you're trying to override a method", notes Clippy. --- test/files/neg/t5617.check | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/files/neg/t5617.check (limited to 'test/files/neg/t5617.check') 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 -- cgit v1.2.3