summaryrefslogtreecommitdiff
path: root/test/files/neg/abstract-concrete-methods.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-08-16 16:53:16 +0000
committerPaul Phillips <paulp@improving.org>2011-08-16 16:53:16 +0000
commitd8359a20a088a4724431ce9c7dd93869c2ad23cb (patch)
treedaecc28fd7443c37bfe13cffd1d77dd96b409756 /test/files/neg/abstract-concrete-methods.scala
parent20859263f2a2cf85464b333b9842bb31c020ee5e (diff)
downloadscala-d8359a20a088a4724431ce9c7dd93869c2ad23cb.tar.gz
scala-d8359a20a088a4724431ce9c7dd93869c2ad23cb.tar.bz2
scala-d8359a20a088a4724431ce9c7dd93869c2ad23cb.zip
Improved the error message given when a concret...
Improved the error message given when a concrete method implementation doesn't match the abstract one. No review.
Diffstat (limited to 'test/files/neg/abstract-concrete-methods.scala')
-rw-r--r--test/files/neg/abstract-concrete-methods.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/neg/abstract-concrete-methods.scala b/test/files/neg/abstract-concrete-methods.scala
new file mode 100644
index 0000000000..7f1aea0dbc
--- /dev/null
+++ b/test/files/neg/abstract-concrete-methods.scala
@@ -0,0 +1,10 @@
+trait Outer[This <: Outer[This]] {
+ self: This =>
+
+ trait Inner
+ def score(i: This#Inner): Double
+}
+class Outer2 extends Outer[Outer2] {
+ class Inner extends super.Inner
+ def score(i: Outer2#Inner) = 0.0
+}